From 634c5e3806390fefe2ef9cd6ff8a6c020b97c7c6 Mon Sep 17 00:00:00 2001 From: Ivan Bushchik Date: Tue, 2 Jan 2024 17:28:08 +0300 Subject: [PATCH] Set nvim as core.editor for git Signed-off-by: Ivan Bushchik --- common/git.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/git.nix b/common/git.nix index 2cd6048..d2561e9 100644 --- a/common/git.nix +++ b/common/git.nix @@ -13,6 +13,9 @@ in { signing.key = "2F16FBF3262E090C"; signing.signByDefault = true; package = pkgs.gitAndTools.gitFull; + extraConfig = { + core.editor = "nvim"; + }; }; }; };