wildfire: 252 current 2025-06-20 13:53:42 25.05.20250617.36ab78d 6.15.2 *

vim settings
This commit is contained in:
2025-06-20 13:53:47 +02:00
parent f873a626a9
commit c3c2fb9098
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;
};
};
}