dotfiles/.zshrc

32 lines
589 B
Bash
Raw Normal View History

2020-01-07 07:42:38 +00:00
# Path to oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
ZSH_THEME="robbyrussell"
# red dots to be displayed while waiting for completion
COMPLETION_WAITING_DOTS="true"
plugins=(
git
node
npm
osx
extract
z
zsh-autosuggestions
)
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
2020-01-25 02:18:28 +00:00
if type brew &>/dev/null; then
FPATH=$(brew --prefix)/share/zsh/site-functions:$FPATH
fi
2020-01-07 07:42:38 +00:00
source $ZSH/oh-my-zsh.sh
# Useful aliases
alias zshconfig="vim ~/.zshrc"
alias ohmyzsh="vim ~/.oh-my-zsh"
alias vimconfig="vim ~/.vimrc"
alias update="source ~/.zshrc"