fix warning for git and delta

Signed-off-by: Matthew Stobbs <matthew@sprouting.cloud>
This commit is contained in:
2026-08-19 08:55:48 -05:00
parent bb04793f90
commit 25e0384864

View File

@@ -62,107 +62,104 @@
delta = { delta = {
enable = true; enable = true;
enableGitIntegration = true; enableGitIntegration = true;
}; options = {
direnv = { decorations = {
enable = true; commit-decoration-style = "bold yellow box ul";
enableZshIntegration = true; file-decoration-style = "none";
}; file-style = "bold yellow ul";
eza = { };
enable = true; features = "decorations";
enableZshIntegration = true; whitespace-error-style = "22 reverse";
colors = "auto";
extraOptions = [
"--group-directories-first"
"--header"
];
git = true;
icons = "auto";
};
fd = {
enable = true;
};
fuzzel = {
enable = true;
settings = {
terminal = "${pkgs.ghostty}/bin/ghostty";
layer = "overlay";
}; };
}; direnv = {
fzf = { enable = true;
enable = true; enableZshIntegration = true;
enableZshIntegration = true;
};
ghostty = {
enable = true;
enableZshIntegration = true;
installBatSyntax = true;
installVimSyntax = true;
settings = {
font-family = "JetBrainsMono Nerd Font";
font-size = 13;
theme = "sproutingdark";
macos-option-as-alt = true;
shell-integration-features = "no-cursor";
cursor-style = "block";
background-opacity = 0.75;
}; };
themes = { eza = {
sproutingdark = { enable = true;
palette = [ enableZshIntegration = true;
"0=#1f2620" colors = "auto";
"1=#e04b7c" extraOptions = [
"2=#9dbf9e" "--group-directories-first"
"3=#ccca7a" "--header"
"4=#5586db" ];
"5=#dc51de" git = true;
"6=#7ef3ef" icons = "auto";
"7=#d8e5d8" };
"8=#3f4c3f" fd = {
"9=#e8789d" enable = true;
"10=#b1ccb1" };
"11=#fffd98" fuzzel = {
"12=#99b6e9" enable = true;
"13=#ea97eb" settings = {
"14=#b2f8f5" terminal = "${pkgs.ghostty}/bin/ghostty";
"15=#f5f9f5" layer = "overlay";
];
background = "1f2620";
foreground = "eaeaea";
cursor-color = "fffd98";
cursor-text = "3f4c3f";
cursor-opacity = 0.7;
cursor-style = "block";
selection-background = "3f4c3f";
selection-foreground = "ffffea";
background-opacity = 1;
window-padding-x = "2,2";
window-padding-y = "2,2";
window-padding-balance = true;
window-height = 25;
window-width = 80;
}; };
}; };
}; fzf = {
git = {
enable = true;
lfs = {
enable = true; enable = true;
enableZshIntegration = true;
}; };
userName = "Matthew Stobbs"; ghostty = {
userEmail = "${email}";
extraConfig = {
init.defaultBranch = "main";
};
delta = {
enable = true; enable = true;
options = { enableZshIntegration = true;
decorations = { installBatSyntax = true;
commit-decoration-style = "bold yellow box ul"; installVimSyntax = true;
file-decoration-style = "none"; settings = {
file-style = "bold yellow ul"; font-family = "JetBrainsMono Nerd Font";
font-size = 13;
theme = "sproutingdark";
macos-option-as-alt = true;
shell-integration-features = "no-cursor";
cursor-style = "block";
background-opacity = 0.75;
};
themes = {
sproutingdark = {
palette = [
"0=#1f2620"
"1=#e04b7c"
"2=#9dbf9e"
"3=#ccca7a"
"4=#5586db"
"5=#dc51de"
"6=#7ef3ef"
"7=#d8e5d8"
"8=#3f4c3f"
"9=#e8789d"
"10=#b1ccb1"
"11=#fffd98"
"12=#99b6e9"
"13=#ea97eb"
"14=#b2f8f5"
"15=#f5f9f5"
];
background = "1f2620";
foreground = "eaeaea";
cursor-color = "fffd98";
cursor-text = "3f4c3f";
cursor-opacity = 0.7;
cursor-style = "block";
selection-background = "3f4c3f";
selection-foreground = "ffffea";
background-opacity = 1;
window-padding-x = "2,2";
window-padding-y = "2,2";
window-padding-balance = true;
window-height = 25;
window-width = 80;
}; };
features = "decorations"; };
whitespace-error-style = "22 reverse"; };
git = {
enable = true;
lfs = {
enable = true;
};
user.name = "Matthew Stobbs";
user.email = "${email}";
settings = {
init.defaultBranch = "main";
}; };
}; };
}; };