This repository has been archived on 2024-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config/home/lazygit/default.nix

23 lines
576 B
Nix
Raw Normal View History

2024-07-19 01:08:20 -05:00
{ lib, config, ... }:
{
programs.lazygit = {
enable = true;
settings = {
gui.theme = {
activeBorderColor = ["#a6e3a1" "bold"];
inactiveBorderColor = ["#a6adc8"];
optionsTextColor = ["#89b4fa"];
selectedLineBgColor = ["#313244"];
selectedRangeBgColor = ["#313244"];
cherryPickedCommitBgColor = ["#45475a"];
cherryPickedCommitFgColor = ["#a6e3a1"];
unstagedChangesColor = ["#f38ba8"];
defaultFgColor = ["#cdd6f4"];
searchingActiveBorderColor = ["#f9e2af"];
};
};
};
}