nv/config/ui/indent-blankline.nix
2024-03-06 18:58:13 +05:30

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"
];
};
};
};
}