Files
nixos-config/home-manager/commands/nixvim/plugins/indent-blankline.nix

15 lines
240 B
Nix

{
programs.nixvim.plugins = {
indent-blankline = {
enable = true;
settings = {
scope = {
show_end = true;
show_exact_scope = true;
show_start = true;
};
};
};
};
}