diff options
author | ZachIR <zachir@librem.one> | 2025-09-10 06:40:33 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-09-10 06:40:33 -0500 |
commit | 3a66f723a354beefd740dcba92eab9cbe5e7bcb6 (patch) | |
tree | d4ded8ef16dad2f795a947acec643691556e7635 /nvim/lua/plugins.lua | |
parent | acc894c4adfd9db5494c53fb150797441a931a1b (diff) | |
parent | da23a4ba550b8f2313d8cdc8b5ef24c45c680260 (diff) |
Merge branch 'master' into carcar
Diffstat (limited to 'nvim/lua/plugins.lua')
-rw-r--r-- | nvim/lua/plugins.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index f90b09c..3684b89 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -14,6 +14,15 @@ vim.opt.rtp:prepend(lazypath) require("lazy").setup({ -- LSP manager { "mason-org/mason.nvim", opts = {} }, + {"vimwiki/vimwiki", + init = function() + vim.g.vimwiki_list = { + { + path = '~/.local/share/vimwiki' + }, + } + end, + }, { "mason-org/mason-lspconfig.nvim", dependencies = { |