fix(plugin): change vimwiki path

This commit is contained in:
2026-01-23 11:31:46 +01:00
parent 2ca257d7e5
commit e96c3d681c
2 changed files with 18 additions and 2 deletions

View File

@@ -7,9 +7,10 @@
./fidget.nix
./guess-indent.nix
./lualine.nix
./snacks.nix
./telescope.nix
./treesitter.nix
./snacks.nix
./vimwiki.nix
];
plugins = {
@@ -20,7 +21,6 @@
nix-develop.enable = true;
nvim-surround.enable = true;
toggleterm.enable = true;
vimwiki.enable = true;
web-devicons.enable = true;
which-key.enable = true;
};

View File

@@ -0,0 +1,16 @@
{ ... }:
{
plugins.vimwiki = {
enable = true;
settings = {
list = [
{
path = "$HOME/.vimwiki/";
template_path = "$HOME/.vimwiki/";
template_default = "default";
template_ext = "html";
}
];
};
};
}