split out vim

This commit is contained in:
Andreas Zweili 2021-12-22 18:15:06 +01:00
parent 4f00d9f8a0
commit 6754c7b5d3
2 changed files with 14 additions and 0 deletions

View File

@ -9,6 +9,7 @@
./software/pycharm
./software/signal
./software/telegram
./software/vim
];
home.packages = with pkgs; [
appimage-run

View File

@ -0,0 +1,13 @@
{ ... }:
{
programs.vim = {
enable = true;
settings = {
expandtab = true;
tabstop = 4;
shiftwidth = 4;
number = true;
relativenumber = true;
};
};
}