This repository has been archived on 2026-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
nvim/lua/plugins/vimwiki.lua

23 lines
610 B
Lua

return {
"vimwiki/vimwiki",
lazy = false,
event = "BufEnter *.md",
ft = "markdown",
keys = { "<leader>ww", "<leader>wt" },
init = function()
vim.g.vimwiki_list = {
{
-- Here will be the path for your wiki
path = "~/dox/brain/",
-- The syntax for the wiki
syntax = "markdown",
ext = "md",
},
}
vim.g.vimwiki_ext2syntax = {
[".md"] = "markdown", -- Correct initialization of the dictionary
}
vim.g.vimwiki_global_ext = 0
end,
}