This commit is contained in:
Aria Nolan 2024-02-01 15:45:19 -05:00
parent 6fc1817bba
commit 60a72f467d
2 changed files with 21 additions and 0 deletions

View file

@ -8,6 +8,7 @@
./fzf.nix
./tmux.nix
./tiny.nix
./vim.nix
];
programs.eza = {

View file

@ -0,0 +1,20 @@
{...}: {
programs.vim = {
enable = true;
settings = {
background = "dark";
copyindent = true;
expandtab = false;
hidden = true;
history = 100;
ignorecase = false;
modeline = true;
mouse = "a";
mousefocus = false;
number = true;
relativenumber = true;
shiftwidth = 2;
tabstop = 2;
};
};
}