try to configure vim

This commit is contained in:
Andreas Zweili 2021-11-16 14:19:41 +01:00
parent 6473a5215e
commit fe37a326ca
1 changed files with 11 additions and 2 deletions

View File

@ -22,8 +22,17 @@
home.packages = with pkgs; [
tmux
mosh
vim
ansible
git
];
programs.vim = {
enable = true;
settings = {
expandtab = true;
tabstop = 4;
shiftwidth = 4;
number = true;
relativenumber = true;
};
};
}