Skip to content

Instantly share code, notes, and snippets.

@becolomochi
Created May 1, 2021 05:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save becolomochi/193c43fb4220bc4fece898fbd4619765 to your computer and use it in GitHub Desktop.
Save becolomochi/193c43fb4220bc4fece898fbd4619765 to your computer and use it in GitHub Desktop.
.zshrc
export HOMEBREW_NO_ANALYTICS=1
alias ll="ls -hlF"
alias la="ls -Ahl"
alias rm="rm -i"
alias cp="cp -i"
alias mv="mv -i"
alias lint="yarn lint:stylesheet"
alias lintfix="yarn lint:stylesheet:fix"
# rbenv
PATH="/usr/local/bin:$PATH"
export PATH="/usr/local/sbin:$PATH"
export PATH="$HOME/.rbenv/bin:$PATH"
export PATH="~/.rbenv/shims:$PATH"
eval "$(rbenv init -)"
# pure
fpath+=$HOME/.zsh/pure
autoload -U promptinit; promptinit
prompt pure
# Nodebrew
export PATH=$HOME/.nodebrew/current/bin:$PATH
# direnv
eval "$(direnv hook zsh)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment