From 24a2413acfdeeaa12e3e9da54aa64bf562b6074d Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 21 Apr 2024 23:28:12 +0100 Subject: [PATCH] Set EDITOR variable --- modules/editors/neovim/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/editors/neovim/default.nix b/modules/editors/neovim/default.nix index 50d7ac9..30d0475 100644 --- a/modules/editors/neovim/default.nix +++ b/modules/editors/neovim/default.nix @@ -132,5 +132,7 @@ in { # plugins.project-nvim.enable = true; # plugins.surround.enable = true; }; + + env.EDITOR = "nvim"; }; }