last commit before nix flake update

This commit is contained in:
2024-12-13 15:33:07 -05:00
parent 91793f396a
commit 11169646d0
3 changed files with 12 additions and 1 deletions

View File

@@ -7,6 +7,7 @@
./vim-matchup.nix
# ./coq.nix
./barbar.nix
./scrollview.nix
./cmp.nix
./lsp.nix
./rustaceanvim.nix

View File

@@ -6,7 +6,6 @@
extensions.dap-ui.enable = true;
};
nix.enable = true;
neoscroll.enable = true;
endwise.enable = true;
firenvim.enable = true;
helpview.enable = true;

View File

@@ -0,0 +1,11 @@
{
programs.nixvim = {
plugins.scrollview = {
enable = true;
settings.diagnostics_error_symbol = "";
settings.diagnostics_warn_symbol = "";
settings.diagnostics_hint_symbol = "";
settings.diagnostics_info_symbol = "";
};
};
}