Skip to content

Commit

Permalink
Adopted zsh to former version
Browse files Browse the repository at this point in the history
  • Loading branch information
ipf committed May 26, 2013
1 parent ca4d951 commit aa2f711
Showing 1 changed file with 50 additions and 8 deletions.
58 changes: 50 additions & 8 deletions zshrc
Original file line number Diff line number Diff line change
@@ -1,14 +1,56 @@
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
ZSH_THEME="rbates"
DISABLE_AUTO_UPDATE="true"
DISABLE_LS_COLORS="true"

plugins=(git bundler brew gem rbates)
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="robbyrussell"

export PATH="/usr/local/bin:$PATH"
export EDITOR='mate -w'
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
alias composer=composer.phar

# Set to this to use case-sensitive completion
# CASE_SENSITIVE="true"

# Comment this out to disable weekly auto-update checks
# DISABLE_AUTO_UPDATE="true"

# Uncomment to change how often before auto-updates occur? (in days)
# export UPDATE_ZSH_DAYS=13

# Uncomment following line if you want to disable colors in ls
# DISABLE_LS_COLORS="true"

# Uncomment following line if you want to disable autosetting terminal title.
# DISABLE_AUTO_TITLE="true"

# Uncomment following line if you want to disable command autocorrection
# DISABLE_CORRECTION="true"

# Uncomment following line if you want red dots to be displayed while waiting for completion
COMPLETION_WAITING_DOTS="true"

# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(git ant github node python rails redis-cli ruby svn gem vagrant sublime)

source $ZSH/oh-my-zsh.sh

# for Homebrew installed rbenv
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
# Customize to your needs...
export PATH=$PATH:/home/ingop/.oh-my-zsh/custom/plugins/rbates/bin:/usr/local/bin:/home/ingop/.oh-my-zsh/custom/plugins/rbates/bin:/usr/local/bin:/home/ingop/.oh-my-zsh/custom/plugins/rbates/bin:/usr/local/bin:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/ingop/.rvm/bin:/home/ingop/.rvm/bin

PATH=$PATH:$HOME/.rvm/bin:$HOME/bin:$HOME/pear:/home/ingop/pear/bin:$HOME/local/bin:/opt/play/play

# Add RVM to PATH for scripting
[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm

zstyle ':completion:*' special-dirs true

### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"

[[ -s "/home/ingop/.gvm/bin/gvm-init.sh" ]] && source "/home/ingop/.gvm/bin/gvm-init.sh"

0 comments on commit aa2f711

Please sign in to comment.