From e78a816c063a05c0a21492db20966eaffcab147c Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Mon, 28 Aug 2023 22:19:48 +0530 Subject: [PATCH] configure git? --- home/programs/git.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/programs/git.nix b/home/programs/git.nix index 5c13f67..142008b 100644 --- a/home/programs/git.nix +++ b/home/programs/git.nix @@ -17,6 +17,11 @@ in { signByDefault = true; }; extraConfig = { + core = { + fsmonitor = true; + untrackedCache = true; + }; + feature.manyFiles = true; init.defaultBranch = "main"; merge.conflictstyle = "diff3"; push.autoSetupRemote = true;