summaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
authorzsmith <zsmith@newhopechurch.tv>2025-08-27 10:24:11 -0500
committerzsmith <zsmith@newhopechurch.tv>2025-08-27 10:24:11 -0500
commitde445f9cf40a4e9c2e4ae87cc2ee7499208cd4ae (patch)
treebcece0f273bf14249bcdc075d64d68d902371a1e /nvim
parent7ad0f7f829480fabb8fd49df3b715bb34c012230 (diff)
Move vimwiki path to ~/.local/share
This is more XDG compliant.
Diffstat (limited to 'nvim')
-rw-r--r--nvim/lua/plugins.lua10
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 = {