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:
parent
9af184b78b
commit
488d152675
5
home.nix
5
home.nix
|
|
@ -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; };
|
||||
|
|
|
|||
Loading…
Reference in a new issue