Created
November 30, 2016 15:01
-
-
Save lilykonings/3f32ec0b6752232f33f93d1a4c081a29 to your computer and use it in GitHub Desktop.
current zshrc/bash_profile settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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