nv/config/ui/indent-blankline.nix

31 lines
534 B
Nix
Raw Normal View History

2024-03-06 13:28:13 +00:00
{
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"
];
};
};
};
}