# # Aliases # # Enable aliases to be sudo’ed # http://askubuntu.com/questions/22037/aliases-not-available-when-using-sudo alias sudo='sudo ' _exists() { command -v $1 > /dev/null 2>&1 } # Just bcoz clr shorter than clear alias clr='clear' # Go to the /home/$USER (~) directory and clears window of your terminal alias q="~ && clear" # Folders Shortcuts [ -d ~/Downloads ] && alias dl='cd ~/Downloads' [ -d ~/Desktop ] && alias dt='cd ~/Desktop' [ -d ~/Projects ] && alias pj='cd ~/Projects' [ -d ~/Projects/Forks ] && alias pjf='cd ~/Projects/Forks' [ -d ~/Projects/Job ] && alias pjj='cd ~/Projects/Job' [ -d ~/Projects/Playground ] && alias pjl='cd ~/Projects/Playground' [ -d ~/Projects/Repos ] && alias pjr='cd ~/Projects/Repos' # Commands Shortcuts alias e="$EDITOR" alias -- +x='chmod +x' alias x+='chmod +x' # Open aliases alias open='open_command' alias o='open' alias oo='open .' alias term='open -a iterm.app' # Run scripts alias update="$DOTFILES/scripts/update.sh" alias bootstrap="$DOTFILES/scripts/bootstrap.sh" # Quick jump to dotfiles alias dotfiles="cd $DOTFILES" # Quick reload of zsh environment alias reload="source $HOME/.zshrc" # My IP alias myip='ifconfig | sed -En "s/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*).*/\2/p"' # Show $PATH in readable view alias path='echo -e ${PATH//:/\\n}' # Download web page with all assets alias getpage='wget --no-clobber --page-requisites --html-extension --convert-links --no-host-directories' # Download file with original filename alias get="curl -O -L" # Yarn alias ybw="yarn build:watch" alias yba="yarn build:all" alias ytw="yarn test:watch" alias ytu="yarn test:unit": # Use tldr as help util if _exists tldr; then alias help="tldr" fi alias git-root='cd $(git rev-parse --show-toplevel)' alias cdgr='git-root' # Avoid stupidity with trash-cli: # https://github.com/sindresorhus/trash-cli # or use default rm -i if _exists trash; then alias rm='trash' fi # Better ls with icons, tree view and more # https://github.com/eza-community/eza if _exists eza; then unalias ls alias ls='eza --icons --header --git --hyperlink' alias lt='eza --icons --tree' unalias l alias l='ls -l' alias la='ls -lAh' fi # cat with syntax highlighting # https://github.com/sharkdp/bat if _exists bat; then # Run to list all themes: # bat --list-themes export BAT_THEME='base16' export BAT_STYLE='full' export MANPAGER='bat -plman' alias cat='bat' fi # cd with zsh-z capabilities # https://github.com/ajeetdsouza/zoxide if _exists zoxide; then alias cd='z' fi # Lazygit # https://github.com/jesseduffield/lazygit if _exists lazygit; then alias lg='lazygit' fi # Glow # https://github.com/charmbracelet/glow if _exists glow; then alias md='glow -t' fi # Claude Code # https://claude.ai/code if _exists claude; then alias cc='claude' alias ccx='cd ~/Projects/Playground && claude --dangerously-skip-permissions' fi # Codex # https://github.com/openai/codex if _exists codex; then alias cx='codex' alias cxx='codex -C ~/Projects/Playground --full-auto' fi