From 488d1526752e0743015310c08003cb89ec3f4629 Mon Sep 17 00:00:00 2001 From: vorboyvo Date: Wed, 10 Apr 2024 09:59:47 -0400 Subject: [PATCH] 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. --- home.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home.nix b/home.nix index 02bfdc4..aeffde7 100644 --- a/home.nix +++ b/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; };