diff --git a/home/darwin.nix b/home/darwin.nix index 5d7da83..1ac14ab 100644 --- a/home/darwin.nix +++ b/home/darwin.nix @@ -17,6 +17,7 @@ ./modules/fish ./modules/wezterm ./modules/nvim + ./modules/lazygit ]; programs.home-manager.enable = true; diff --git a/home/modules/lazygit/default.nix b/home/modules/lazygit/default.nix new file mode 100644 index 0000000..99a7f44 --- /dev/null +++ b/home/modules/lazygit/default.nix @@ -0,0 +1,23 @@ +{ config, ... }: + +{ + programs.lazygit = { + enable = true; + settings = { + gui = { + nerdFontsVersion = "3"; + theme = { + selectedLineBgColor = [ "#332d41" ]; + searchingActiveBorderColor = [ "#31748f" "bold" ]; + optionsTextColor = [ "#ebbcba" ]; + inactiveBorderColor = [ "#6e6a86" ]; + defaultFgColor = [ "#e0def4" ]; + cherryPickedCommitFgColor = [ "#ebbcba" ]; + cherryPickedCommitBgColor = [ "#e0def4" ]; + activeBorderColor = [ "#31748f" "bold" ]; + unstagedChangesColor = [ "#eb6f92" ]; + }; + }; + }; + }; +}