From 62e5c7b573a7a3e7e39aba84e28f1c813b3c9dd8 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Wed, 15 Jan 2025 09:00:10 +0100 Subject: [PATCH] other/git.nix: add default editor and manyFiles --- modules/other/git.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/other/git.nix b/modules/other/git.nix index e8f6693..82bced8 100644 --- a/modules/other/git.nix +++ b/modules/other/git.nix @@ -15,6 +15,9 @@ gpg.format = "ssh"; commit.gpgsign = "true"; diff.external = "${pkgs.difftastic}/bin/difft"; + core = { + editor = "hx"; + }; rebase = { autoSquash = true; autoStash = true; @@ -23,6 +26,9 @@ enabled = true; autoupdate = true; }; + feauture = { + manyFiles = true; + }; }; }; }