nix-config/users/tacocat/programs/vim.nix
2024-02-01 15:45:19 -05:00

21 lines
382 B
Nix

{...}: {
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;
};
};
}