Compare commits

...

1 Commits

2 changed files with 11 additions and 0 deletions

View File

@@ -35,6 +35,7 @@
./home/gtk.nix # GTK theme
./home/nextcloud.nix # Nextcloud autostart
./home/code-cursor.nix # Cursor config
./home/vim.nix # Vim config
];
};

10
modules/home/vim.nix Normal file
View File

@@ -0,0 +1,10 @@
{
programs.vim = {
enable = true;
defaultEditor = true;
settings = {
number = true;
relativenumber = true;
};
};
}