Skip to content

Instantly share code, notes, and snippets.

@premist
Created December 19, 2011 02:51
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 premist/1495192 to your computer and use it in GitHub Desktop.
Save premist/1495192 to your computer and use it in GitHub Desktop.
My ~/.zshrc configuration
ZSH=$HOME/.oh-my-zsh
ZSH_THEME="blinks"
# CASE_SENSITIVE="true"
# DISABLE_AUTO_UPDATE="true"
# DISABLE_LS_COLORS="true"
# DISABLE_AUTO_TITLE="true"
# COMPLETION_WAITING_DOTS="true"
plugins=(git osx gem macports node npm rails3 rvm svn)
# oh my zsh
source $ZSH/oh-my-zsh.sh
# rvm
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
# MacPorts
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
# Open current folder with Finder.app
alias f='/usr/bin/osascript -e "tell application \"Finder\" to open posix file \"`pwd`\""'
# Sublime Text 2 shortcut
alias s='subl'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment