Files
nix-config/home-manager/nixvim/blankline.nix
2024-05-16 21:14:30 +02:00

16 lines
233 B
Nix

{
plugins.indent-blankline = {
enable = true;
settings = {
indent = {
smart_indent_cap = true;
char = " ";
};
scope = {
enabled = true;
char = "";
};
};
};
}