universe/users/profiles/vim.nix
2023-03-30 12:29:47 -04:00

20 lines
358 B
Nix

{ ... }: {
programs.vim = {
enable = true;
settings = {
background = "dark";
directory = [
"."
"~/.local/share/vim/swap//"
];
expandtab = true;
history = 50;
ignorecase = true;
smartcase = true;
mouse = "a";
number = true;
tabstop = 4;
shiftwidth = 4;
};
};
}