pkgs(nixvim): Enable treesitter support and enable which-key plugin

This commit is contained in:
ulic-youthlic 2025-07-13 06:04:55 +08:00
parent 9466308478
commit 7078dd84eb
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721

View file

@ -1,2 +1,19 @@
{...}: {
plugins = {
treesitter = {
enable = true;
# folding = true;
nixvimInjections = true;
settings = {
highlight = {
enable = true;
additional_vim_regex_highlighting = true;
};
indent.enable = true;
};
};
which-key = {
enable = true;
};
};
}