mirror of
https://github.com/akr2002/nv.git
synced 2025-02-05 10:30:02 +00:00
add indent-blankline
This commit is contained in:
parent
a9139c9a44
commit
98f033921a
2 changed files with 31 additions and 0 deletions
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
30
config/ui/indent-blankline.nix
Normal file
30
config/ui/indent-blankline.nix
Normal 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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue