-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
26 lines (18 loc) · 798 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
# Path to your oh-my-zsh installation.
export ZSH=/Users/simon/.oh-my-zsh
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH=$HOME/bin:$PATH
export PATH="$PATH:$HOME/.rvm/bin"
ZSH_THEME="robbyrussell"
plugins=(git zsh-autosuggestions)
source $ZSH/oh-my-zsh.sh
# aliases
[[ -f ~/.aliases ]] && source ~/.aliases
# fzf
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# fish style syntax highlighting
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh