-
-
Save anonymous/61d093fdccf50e9d6d2f to your computer and use it in GitHub Desktop.
zshrc
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
# Path to your oh-my-zsh configuration. | |
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. | |
ZSH_THEME="robbyrussell" | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # This loads RVM into a shell session. | |
# Example aliases | |
# alias zshconfig="mate ~/.zshrc" | |
# alias ohmyzsh="mate ~/.oh-my-zsh" | |
# Set to this to use case-sensitive completion | |
# CASE_SENSITIVE="true" | |
# Comment this out to disable bi-weekly auto-update checks | |
# DISABLE_AUTO_UPDATE="true" | |
# Uncomment to change how many often would you like to wait 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 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 rvm rails3 bundler gem) | |
source $ZSH/oh-my-zsh.sh | |
# Customize to your needs... | |
# export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games | |
# PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting | |
export PATH=$PATH:$HOME/.rvm/bin:$HOME/.rvm/gems/ruby-1.9.3-p327@global/bin:$HOME/.rvm/gems/ruby-1.9.3-p327@protopipe/bin:$HOME/.rvm/gems/ruby-1.9.3-p327/bin:$HOME/.rvm/gems/ruby-1.9.3-p327-perf/bin:/home/alder/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games | |
rvm use 1.9.3-p327-perf | |
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