mirror of
https://github.com/BradNut/dotfiles
synced 2025-09-08 17:40:19 +00:00
Adding zshrc with oh-my-zsh config
This commit is contained in:
parent
a1c646c619
commit
00821f6a2a
1 changed files with 27 additions and 0 deletions
27
.zshrc
Normal file
27
.zshrc
Normal file
|
|
@ -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"
|
||||||
Loading…
Reference in a new issue