diff --git a/modules/common.nix b/modules/common.nix index 500946a..803a814 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -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 ]; }; diff --git a/modules/home/vim.nix b/modules/home/vim.nix new file mode 100644 index 0000000..80a64ae --- /dev/null +++ b/modules/home/vim.nix @@ -0,0 +1,10 @@ +{ + programs.vim = { + enable = true; + defaultEditor = true; + settings = { + number = true; + relativenumber = true; + }; + }; +}