wiki.lua 409 B

12345678910111213
  1. return {
  2. {
  3. "aquach/vim-mediawiki-editor",
  4. dependencies = { "vim-scripts/mediawiki.vim" }, -- Optional: for syntax highlighting
  5. config = function()
  6. -- Optional: Configuration settings
  7. -- Example:
  8. vim.g.mediawiki_editor_url = "https://wiki.t0m4.fr/index.php"
  9. vim.g.mediawiki_editor_path = "/"
  10. vim.g.mediawiki_editor_username = "Thomas" -- Consider setting this in your .vimrc
  11. end,
  12. },
  13. }