Skip to content

Instantly share code, notes, and snippets.

@adelinofaria
Last active July 13, 2023 16:34
Show Gist options
  • Save adelinofaria/f895738b2bbae023356160bd4fa8b34b to your computer and use it in GitHub Desktop.
Save adelinofaria/f895738b2bbae023356160bd4fa8b34b to your computer and use it in GitHub Desktop.
.zshrc
# General
# Prompt
## Default Config
#export TERM=%n@%m %1~ %#
# Alias
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -larth'
alias ..='cd ..'
alias cd..='cd ..'
# PATH
## homebrew
export PATH="/usr/local/sbin:$PATH"
## rbenv
export PATH="$HOME/.rbenv/bin:$HOME/.rbenv/shims:$PATH"
# Applications
## Homebrew
eval $(/usr/local/bin/brew shellenv)
## rbenv
eval "$(rbenv init -)"
## gpg
export GPG_TTY="tty"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment