feat: Update to the zsh setup, moving functions and aliases to their own

files, changing up the plugins and settings to remove stale setups and
to reduce the loading time by nearly half
This commit is contained in:
2026-03-28 16:53:51 -05:00
parent a31d423095
commit 64868c6672
4 changed files with 39 additions and 70 deletions

9
zsh/zsh_aliases Normal file
View File

@@ -0,0 +1,9 @@
# Aliases Universal
alias rm="rm -I" # Prompt for removal of more than three files or recursively to give some protection of mistakes
alias mv="mv -i" # Prompt before moving files
alias df="df -h" # Always use the human readable formatting
alias du="du -h -d 1" # Always use human readable format and only for the current dir by default
alias k="killall" # Quick killall
alias p="ps aux | grep $1" # Quick
alias n="$EDITOR" # Just open the usual editor
alias todo="nvim ~/.zettelkasten/TODO.md"