add indent-blankline

This commit is contained in:
Aditya 2024-03-06 18:58:13 +05:30
parent a9139c9a44
commit 98f033921a
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
2 changed files with 31 additions and 0 deletions

View file

@ -47,6 +47,7 @@
./ui/alpha.nix ./ui/alpha.nix
./ui/dressing-nvim.nix ./ui/dressing-nvim.nix
./ui/indent-blankline.nix
./ui/nvim-notify.nix ./ui/nvim-notify.nix
]; ];
} }

View file

@ -0,0 +1,30 @@
{
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"
];
};
};
};
}