From 00821f6a2a48b0453d80b1a12adfe5e8a4f0d8f2 Mon Sep 17 00:00:00 2001 From: Bradley Shellnut Date: Mon, 6 Jan 2020 23:42:38 -0800 Subject: [PATCH] Adding zshrc with oh-my-zsh config --- .zshrc | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .zshrc diff --git a/.zshrc b/.zshrc new file mode 100644 index 0000000..e5a7669 --- /dev/null +++ b/.zshrc @@ -0,0 +1,27 @@ +# 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 + +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"