Configured kakoune as default editor for git; I want to refactor this to use my default editor setting per nix/HM config later, rather than hardcoding it.

This commit is contained in:
vorboyvo 2024-04-10 09:59:47 -04:00
parent 9af184b78b
commit 488d152675

View file

@ -85,7 +85,10 @@ in
enable = true;
userName = "vorboyvo";
userEmail = "mrsirofvibe@outlook.com";
extraConfig = { init.defaultBranch = "main"; };
extraConfig = {
init.defaultBranch = "main";
core.editor = "kak";
};
};
wayland.windowManager.sway = import ./programs/sway.nix { inherit scripts extra config lib pkgs terminal; };