diff options
author | zachir <zachir@librem.one> | 2025-08-28 23:02:46 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-08-28 23:02:46 -0500 |
commit | 30dd377834eb32e0a5f93f54a6ef1d839079e23f (patch) | |
tree | 8bd2dc4687898f5c36d2937552097ee1d7aa858e /nvim/lua/plugins.lua | |
parent | 935da0d833f81220f19dfeffe6839cc4535fb383 (diff) | |
parent | 3923f1e72deb7d43495d025d5f9daeb1eeda2944 (diff) |
Merge branch 'master' into cas
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 = { |