feat: neovim plugins update

This commit is contained in:
gwg313 2024-09-26 11:35:37 -04:00
parent 6e8014e0b5
commit eaf110c96f
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
13 changed files with 1195 additions and 6 deletions

View file

@ -0,0 +1,37 @@
{...}: {
programs.nixvim = {
autoCmd = [
{
event = ["FileType"];
pattern = [
"help"
"alpha"
"dashboard"
"neo-tree"
"Trouble"
"trouble"
"lazy"
"mason"
"notify"
"toggleterm"
"lazyterm"
];
callback.__raw = ''
function()
vim.b.miniindentscope_disable = true
end
'';
}
];
plugins = {
mini = {
enable = true;
modules = {
indentscope = {};
};
};
};
};
}