adding equibop

This commit is contained in:
Dea 2026-02-05 23:02:49 -05:00
parent 0b91ddda4b
commit e16fc26eec
5 changed files with 156 additions and 7 deletions

17
homemanager/nvf.nix Normal file
View file

@ -0,0 +1,17 @@
{ pkgs, ... }:
{
programs.nvf = {
enable = true;
# Your settings need to go into the settings attribute set
# most settings are documented in the appendix
settings = {
vim.viAlias = false;
vim.vimAlias = true;
vim.lsp = {
enable = true;
};
};
};
}