nix-config/users/tacocat/programs/vim.nix

21 lines
382 B
Nix
Raw Normal View History

2024-02-01 20:45:19 +00:00
{...}: {
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;
};
};
}