forked from justaparth/maximum-awesome-linux
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zshrc
35 lines (23 loc) · 884 Bytes
/
zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
ZSH_THEME="nanotech"
DISABLE_AUTO_UPDATE="true" # Sorry
# 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)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)
# User configuration
export EDITOR='vim'
source $ZSH/oh-my-zsh.sh
# Aliases
alias be="bundle exec"
alias sp="bundle exec rspec -c"
alias ss="bundle exec rails server"
alias q="exit"
# Extra path lines
export PATH=$HOME/bin:/usr/local/bin:$PATH
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'