mirror of
https://github.com/Superredstone/nixvim.git
synced 2026-03-08 04:28:07 +01:00
fix(plugin): change vimwiki path
This commit is contained in:
@@ -7,9 +7,10 @@
|
|||||||
./fidget.nix
|
./fidget.nix
|
||||||
./guess-indent.nix
|
./guess-indent.nix
|
||||||
./lualine.nix
|
./lualine.nix
|
||||||
|
./snacks.nix
|
||||||
./telescope.nix
|
./telescope.nix
|
||||||
./treesitter.nix
|
./treesitter.nix
|
||||||
./snacks.nix
|
./vimwiki.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
plugins = {
|
plugins = {
|
||||||
@@ -20,7 +21,6 @@
|
|||||||
nix-develop.enable = true;
|
nix-develop.enable = true;
|
||||||
nvim-surround.enable = true;
|
nvim-surround.enable = true;
|
||||||
toggleterm.enable = true;
|
toggleterm.enable = true;
|
||||||
vimwiki.enable = true;
|
|
||||||
web-devicons.enable = true;
|
web-devicons.enable = true;
|
||||||
which-key.enable = true;
|
which-key.enable = true;
|
||||||
};
|
};
|
||||||
|
|||||||
16
config/plugins/vimwiki.nix
Normal file
16
config/plugins/vimwiki.nix
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
plugins.vimwiki = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
list = [
|
||||||
|
{
|
||||||
|
path = "$HOME/.vimwiki/";
|
||||||
|
template_path = "$HOME/.vimwiki/";
|
||||||
|
template_default = "default";
|
||||||
|
template_ext = "html";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user