diff options
author | ZachIR <zachir@librem.one> | 2025-08-30 22:25:14 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-08-30 22:25:14 -0500 |
commit | 197d8897b25a1e9ad8fd290349b7c3e468aa5bb8 (patch) | |
tree | b35ec3d23cc3c3e79cdd04f6644543ada83a21f2 /nvim/lua/plugins.lua | |
parent | 9f2ee493095cdefbf1bb99fbdf80029b87e3044d (diff) | |
parent | 479805929ad95001e2ff82b1e0ce5a53d9ba05e0 (diff) |
Merge branch 'mac' of zachir.xyz:zachir/dotfiles into mac
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 = { |