rename home dir

This commit is contained in:
2025-09-19 15:07:40 +00:00
parent d412f1ac6c
commit 2ab49fbfc8
30 changed files with 0 additions and 0 deletions

52
home/packages/zsh/zsh.nix Normal file
View File

@@ -0,0 +1,52 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
oh-my-zsh
];
programs ={
zsh = {
enable = true;
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"
];
};
};
};
}