Skip to content

Instantly share code, notes, and snippets.

@zishe
Created November 17, 2012 04:22
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 zishe/4093259 to your computer and use it in GitHub Desktop.
Save zishe/4093259 to your computer and use it in GitHub Desktop.
zshrc
# Path to your oh-my-zsh configuration.
export ZSH=$HOME/.oh-my-zsh
# 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.
export ZSH_THEME="robbyrussell"
[[ -s "/home/akder/.rvm/scripts/rvm" ]] && source "/home/akder/.rvm/scripts/rvm" # This loads RVM into a shell session.
# Set to this to use case-sensitive completion
# export CASE_SENSITIVE="true"
# Comment this out to disable weekly auto-update checks
# export DISABLE_AUTO_UPDATE="true"
# Uncomment following line if you want to disable colors in ls
# export DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
# export DISABLE_AUTO_TITLE="true"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(git rvm rails3 bundler gem)
source $ZSH/oh-my-zsh.sh
# Customize to your needs...
export PATH=/home/akder/.rvm/bin:/home/akder/.rvm/gems/ruby-1.9.3-p327@global/bin:/home/akder/.rvm/gems/ruby-1.9.3-p327@protopipe/bin:/home/akder/.rvm/gems/ruby-1.9.3-p327/bin:/home/akder/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
rvm use 1.9.3-p327
bindkey "\e[1~" beginning-of-line # Home
bindkey "\e[4~" end-of-line # End
bindkey "\e[5~" beginning-of-history # PageUp
bindkey "\e[6~" end-of-history # PageDown
bindkey "\e[2~" quoted-insert # Ins
bindkey "\e[3~" delete-char # Del
bindkey "5C" forward-word
bindkey "5D" backward-word
bindkey '^I' complete-word # complete on tab, leave expansion to _expand
autoload -U compinit promptinit
compinit
promptinit -i
alias ls='ls --color=auto'
alias grep='grep --colour=auto'
HISTFILE=~/.zhistory
HISTSIZE=50000
SAVEHIST=50000
# Aliases
alias gs='git status '
alias ga.='git add .'
alias gca='git commit -am'
alias gpm='git push origin master'
alias gph='git push heroku master'
alias gd='git diff'
alias go='git checkout '
alias gk='gitk --all&'
alias gx='gitx --all'
alias got='git '
alias get='git '
alias rdbmt='rake db:migrate RAILS_ENV="test"'
alias rdba='rake db:create db:migrate db:seed'
export RUBY_HEAP_MIN_SLOTS=1000000
export RUBY_HEAP_SLOTS_INCREMENT=1000000
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
export RUBY_GC_MALLOC_LIMIT=100000000
export RUBY_HEAP_FREE_MIN=500000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment