Skip to content

Instantly share code, notes, and snippets.

@lilykonings
Created November 30, 2016 15:01
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 lilykonings/3f32ec0b6752232f33f93d1a4c081a29 to your computer and use it in GitHub Desktop.
Save lilykonings/3f32ec0b6752232f33f93d1a4c081a29 to your computer and use it in GitHub Desktop.
current zshrc/bash_profile settings
alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app'
alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app'
# python, virtualenv
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
export PIP_VIRTUALENV_BASE=$WORKON_HOME
alias workoff='deactivate'
# ruby, rbenv
export PATH=$HOME/.rbenv/shims:$PATH
export RBENV_ROOT="$(brew --prefix rbenv)"
export GEM_HOME="$(brew --prefix)/opt/gems"
export GEM_PATH="$(brew --prefix)/opt/gems"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment