From c3c2fb9098fc65b80b0e1198057a86b40e78ec91 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Fri, 20 Jun 2025 13:53:47 +0200 Subject: [PATCH] wildfire: 252 current 2025-06-20 13:53:42 25.05.20250617.36ab78d 6.15.2 * vim settings --- modules/common.nix | 1 + modules/home/vim.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 modules/home/vim.nix 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; + }; + }; +}