nixos-config/home-manager/modules/neovim/plugins/mini-indentscope.nix

37 lines
609 B
Nix

{...}: {
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 = {};
};
};
};
};
}