mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 18:49:45 +00:00
30 lines
534 B
Nix
30 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"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|