-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshrc
More file actions
37 lines (29 loc) · 1.43 KB
/
.zshrc
File metadata and controls
37 lines (29 loc) · 1.43 KB
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
36
37
# Path to your oh-my-zsh installation.
export ZSH=/Users/tanaysalpekar/.oh-my-zsh
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
export EDITOR="vim"
ZSH_THEME="robbyrussell"
# Uncomment the following line to enable command auto-correction.
ENABLE_CORRECTION="true"
# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="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)
# Add wisely, as too many plugins slow down shell startup.
plugins=(rails git hub)
# User configuration
export PATH="$PATH:/Users/tanaysalpekar/.rvm/gems/ruby-2.1.2/bin:/Users/tanaysalpekar/.rvm/gems/ruby-2.1.2@global/bin:/Users/tanaysalpekar/.rvm/rubies/ruby-2.1.2/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/git/bin:/Users/tanaysalpekar/.rvm/bin"
source $ZSH/oh-my-zsh.sh
# Example aliases
alias ..z="vim ~/.zshrc"
alias ..v="vim ~/.vimrc"
alias ..t="vim ~/.tmux.conf"
alias cdcl="cd ~/Documents/Class"
alias cdco="cd ~/Documents/corkcrm"
alias cdch="cd ~/Documents/Chat"
alias sshchat="ssh -i ~/Secrets/chat.pem ec2-user@ec2-54-201-93-240.us-west-2.compute.amazonaws.com"
alias c="clear"
alias sz="source ~/.zshrc"