From 762e929fe396a6e2ecc4b9e8334e990fab250d0e Mon Sep 17 00:00:00 2001 From: Brian Hicks Date: Mon, 27 Apr 2020 15:09:11 -0500 Subject: [PATCH] add lazygit config --- dotfiles/git.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dotfiles/git.nix b/dotfiles/git.nix index 239a747..c22f8be 100644 --- a/dotfiles/git.nix +++ b/dotfiles/git.nix @@ -56,5 +56,11 @@ in { ]; }; + home.file."Library/Application Support/jesseduffield/lazygit/config.yml".text = + builtins.toJSON { + reporting = "off"; + startupPopupVersion = 1; + }; + home.packages = with pkgs; [ git-lfs lazygit pkgs.gitAndTools.delta ]; }