mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 10:39:44 +00:00
31 lines
534 B
Nix
31 lines
534 B
Nix
|
{
|
||
|
plugins = {
|
||
|
indent-blankline = {
|
||
|
enable = true;
|
||
|
indent = {
|
||
|
char = "│"; # "│" or "▎"
|
||
|
};
|
||
|
scope = {
|
||
|
enabled = true;
|
||
|
showStart = true;
|
||
|
};
|
||
|
exclude = {
|
||
|
buftypes = ["terminal" "nofile"];
|
||
|
filetypes = [
|
||
|
"help"
|
||
|
"alpha"
|
||
|
"dashboard"
|
||
|
"neo-tree"
|
||
|
"Trouble"
|
||
|
"trouble"
|
||
|
"lazy"
|
||
|
"mason"
|
||
|
"notify"
|
||
|
"toggleterm"
|
||
|
"lazyterm"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|