diff options
author | zsmith <zsmith@newhopechurch.tv> | 2025-08-27 10:24:11 -0500 |
---|---|---|
committer | zsmith <zsmith@newhopechurch.tv> | 2025-08-27 10:24:11 -0500 |
commit | de445f9cf40a4e9c2e4ae87cc2ee7499208cd4ae (patch) | |
tree | bcece0f273bf14249bcdc075d64d68d902371a1e /nvim | |
parent | 7ad0f7f829480fabb8fd49df3b715bb34c012230 (diff) |
Move vimwiki path to ~/.local/share
This is more XDG compliant.
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/lua/plugins.lua | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index 183a20d..3684b89 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -14,7 +14,15 @@ vim.opt.rtp:prepend(lazypath) require("lazy").setup({ -- LSP manager { "mason-org/mason.nvim", opts = {} }, - "vimwiki/vimwiki", + {"vimwiki/vimwiki", + init = function() + vim.g.vimwiki_list = { + { + path = '~/.local/share/vimwiki' + }, + } + end, + }, { "mason-org/mason-lspconfig.nvim", dependencies = { |