feat(nvf): add indent-blankline

This commit is contained in:
Mohammad Rafiq 2025-05-20 21:13:32 +08:00
parent 71706390b4
commit 3770921930
No known key found for this signature in database
2 changed files with 8 additions and 4 deletions

View file

@ -5,12 +5,13 @@
programs.nvf = {
enable = true;
settings.vim = {
options = import ./options.nix;
keymaps = import ./keymaps.nix;
lsp = import ./lsp.nix;
languages = import ./languages.nix;
autocomplete = import ./autocomplete.nix;
keymaps = import ./keymaps.nix;
languages = import ./languages.nix;
lsp = import ./lsp.nix;
options = import ./options.nix;
utility = import ./utility.nix;
visuals = import ./visuals.nix;
};
};
};

View file

@ -0,0 +1,3 @@
{
indent-blankline.enable = true;
}