mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-07 13:03:03 -04:00
v49 added a bad UI option with no config to change it revert to main once https://github.com/jesseduffield/lazygit/pull/4593 is merged and updated in nixpkgs also refactors lazygit into its own module and removes the config file
77 lines
1.6 KiB
Nix
77 lines
1.6 KiB
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
home = {
|
|
shellAliases = {
|
|
lg = "lazygit";
|
|
};
|
|
};
|
|
stylix = {
|
|
targets = {
|
|
lazygit = {
|
|
enable = false;
|
|
};
|
|
};
|
|
};
|
|
programs = {
|
|
lazygit = {
|
|
enable = true;
|
|
package = pkgs.lazygit.overrideAttrs (
|
|
_: old: {
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "jesseduffield";
|
|
repo = old.pname;
|
|
rev = "3cff48437e2d831d03be9eda03818368ab7c2a26";
|
|
hash = "sha256-OA40EgUKwNttsoSLi/xtKuEdbK0P5IKiXUGKSOk0gfE=";
|
|
};
|
|
}
|
|
);
|
|
settings = {
|
|
gui = {
|
|
showRootItemInFileTree = false;
|
|
switchTabsWithPanelJumpKeys = true;
|
|
theme = {
|
|
lightTheme = false;
|
|
activeBorderColor = [
|
|
"#ff9e64"
|
|
"bold"
|
|
];
|
|
inactiveBorderColor = [
|
|
"#27a1b9"
|
|
];
|
|
searchingActiveBorderColor = [
|
|
"#ff9e64"
|
|
"bold"
|
|
];
|
|
optionsTextColor = [
|
|
"#7aa2f7"
|
|
];
|
|
selectedLineBgColor = [
|
|
"#283457"
|
|
];
|
|
cherryPickedCommitFgColor = [
|
|
"#7aa2f7"
|
|
];
|
|
cherryPickedCommitBgColor = [
|
|
"#bb9af7"
|
|
];
|
|
markedBaseCommitFgColor = [
|
|
"#7aa2f7"
|
|
];
|
|
markedBaseCommitBgColor = [
|
|
"#e0af68"
|
|
];
|
|
unstagedChangesColor = [
|
|
"#db4b4b"
|
|
];
|
|
defaultFgColor = [
|
|
"#c0caf5"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|