-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
31 lines (23 loc) · 881 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
# If you come from bash you might have to change your $PATH.
# export PATH=/usr/local/bin:$HOME/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/Users/ryan/.oh-my-zsh"
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
# ZSH_THEME="robbyrussell"
ZSH_THEME="cobalt2"
# Standard 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)
# Load omz.
source $ZSH/oh-my-zsh.sh
# Example aliases.
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
# Use Visual Studio Code as file editor.
export EDITOR='code --wait'
# Load rbenv.
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
# Load global ENV variables.
export $(egrep -v '^#' ~/.env | xargs)