This commit is contained in:
2025-09-19 07:57:03 +00:00
parent f6d356c066
commit d412f1ac6c
6 changed files with 62 additions and 52 deletions

View File

@@ -6,31 +6,47 @@
oh-my-zsh
];
programs.zsh = {
enable = true;
antidote = {
programs ={
zsh = {
enable = true;
# plugins = [
# "colored-man-pages"
# "colorize"
# "cp"
# "history"
# "ssh-agent"
# "zoxide"
# ];
useFriendlyNames = true;
};
autosuggestion = {
enable = true;
};
shellAliases = {
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"pls" = "pls -d typ -d perm -d user -d group -d size -d mtime -d git";
"z" = "zoxide";
antidote = {
enable = true;
plugins = [
"zsh-users/zsh-autosuggestions"
"zsh-users/zsh-syntax-highlighting"
# "colored-man-pages"
# "colorize"
# "cp"
# "history"
# "ssh-agent"
# "zoxide"
];
useFriendlyNames = true;
};
autosuggestion = {
enable = true;
};
shellAliases = {
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"pls" = "pls -d typ -d perm -d user -d group -d size -d mtime -d git";
"z" = "zoxide";
};
oh-my-zsh = {
enable = true;
plugins = [
"git"
"sudo"
"colored-man-pages"
"colorize"
"cp"
"zoxide"
"ssh-agent"
"command-not-found"
];
};
};
};
}