Alexandre 1fb2bebc88
All checks were successful
Check config / build (push) Successful in 9m43s
Started dentritic pattern
2026-06-20 00:15:16 +02:00

48 lines
981 B
Nix

{ pkgs, ... }:
{
programs = {
zsh = {
enable = true;
package = pkgs.zsh;
enableCompletion = true;
autocd = true;
initContent = "fastfetch --logo small -s DateTime:Battery:CPU:GPU:Memory:Host:Media --percent-type 2";
autosuggestion = {
enable = true;
strategy = [ "match_prev_cmd" ];
highlight = "fg=grey, underline";
};
history = {
append = true;
extended = true;
ignoreSpace = false;
save = 100000;
size = 100000;
saveNoDups = true;
share = true;
};
oh-my-zsh = {
enable = true;
package = pkgs.oh-my-zsh;
plugins = [
"git"
"react-native"
"golang"
"docker"
#"brew"
"eza"
"fzf"
"gh"
"kitty"
#"zsh-autosuggestions"
#"zsh-syntax-highlighting"
];
};
};
};
}