mirror of
https://github.com/Superredstone/nixvim.git
synced 2026-03-07 12:11:47 +01:00
17 lines
281 B
Nix
17 lines
281 B
Nix
{ ... }:
|
|
{
|
|
plugins.vimwiki = {
|
|
enable = true;
|
|
settings = {
|
|
list = [
|
|
{
|
|
path = "$HOME/.vimwiki/";
|
|
template_path = "$HOME/.vimwiki/";
|
|
template_default = "default";
|
|
template_ext = "html";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|