From 4971634115102a0443af0d4d2d29c7d8dbefd9f7 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 7 Feb 2023 14:19:46 +0000 Subject: [PATCH] home: vim: make it the default editor explicitly --- home/vim/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/vim/default.nix b/home/vim/default.nix index 3f5065c..55d07ac 100644 --- a/home/vim/default.nix +++ b/home/vim/default.nix @@ -24,6 +24,10 @@ in config.programs.neovim = lib.mkIf cfg.enable { enable = true; + + # This is the best editor + defaultEditor = true; + # All the aliases viAlias = true; vimAlias = true;