Created
December 19, 2011 02:51
-
-
Save premist/1495192 to your computer and use it in GitHub Desktop.
My ~/.zshrc configuration
This file contains 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
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