Home

dotnix @6b8f19738b235f1555ee360b6ab0b92b718da644 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / lazygit.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
{
  programs.lazygit = {
    enable = true;
    settings = {
      nerdFontsVersion = "3";
      update.method = "never";
      gui.theme = {
        lightTheme = false;
        activeBorderColor = ["#a6e3a1" "bold"];
        inactiveBorderColor = ["#cdd6f4"];
        optionsTextColor = ["#89b4fa"];
        selectedLineBgColor = ["#313244"];
        selectedRangeBgColor = ["#313244"];
        cherryPickedCommitBgColor = ["#94e2d5"];
        cherryPickedCommitFgColor = ["#89b4fa"];
        unstagedChangesColor = ["#f38ba8"];
      };
    };
  };
}