mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-24 05:07:00 -04:00
73 lines
1.5 KiB
Nix
73 lines
1.5 KiB
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./unstable.nix
|
|
];
|
|
home = {
|
|
shellAliases = {
|
|
lg = "lazygit";
|
|
};
|
|
};
|
|
stylix = {
|
|
targets = {
|
|
lazygit = {
|
|
enable = false;
|
|
};
|
|
};
|
|
};
|
|
programs = {
|
|
lazygit = {
|
|
enable = true;
|
|
package = pkgs.unstable.lazygit;
|
|
settings = {
|
|
notARepository = "quit";
|
|
promptToReturnFromSubprocess = false;
|
|
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"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|