From 880564e75499b9e750e42bc35eff68f98ffcdd96 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Sun, 24 Mar 2024 13:22:34 +0100 Subject: [PATCH] change $EDITOR to use pkgs.neovim-nightly is this why the colourscheme was broken when editing the git commit message --- modules/tui/neovim.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/tui/neovim.nix b/modules/tui/neovim.nix index a8106311d..694a5d0cb 100644 --- a/modules/tui/neovim.nix +++ b/modules/tui/neovim.nix @@ -15,7 +15,7 @@ in { nixpkgs.overlays = [ inputs.neovim-nightly-overlay.overlay ]; environment.sessionVariables = { - EDITOR = "${pkgs.neovim}/bin/nvim"; + EDITOR = "${pkgs.neovim-nightly}/bin/nvim"; }; home-manager.users.${username} = {