Skip to content

Instantly share code, notes, and snippets.

@aklinker1
Created January 11, 2020 16:11
Show Gist options
  • Save aklinker1/4424cc7080521ee896878c53cdc0bae5 to your computer and use it in GitHub Desktop.
Save aklinker1/4424cc7080521ee896878c53cdc0bae5 to your computer and use it in GitHub Desktop.
# Oh My ZSH Config
export ZSH=$HOME/.oh-my-zsh
ZSH_THEME="aklinker1"
HYPHEN_INSENSITIVE="true"
DISABLE_UPDATE_PROMPT="true"
ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
source $ZSH/oh-my-zsh.sh
# Custom Syntax Highlighting colors
typeset -A ZSH_HIGHLIGHT_STYLES
ZSH_HIGHLIGHT_STYLES[unknown-token]='fg=red,bold'
ZSH_HIGHLIGHT_STYLES[command]='fg=white,bold'
ZSH_HIGHLIGHT_STYLES[alias]='fg=blue,bold'
# ZSH_HIGHLIGHT_STYLES[precommand]=fg=blue,underline
# ZSH_HIGHLIGHT_STYLES[arg0]=fg_bold=blue
# Antigen setup
source ~/.oh-my-zsh/antigen.zsh
antigen bundle git
antigen bundle heroku
antigen bundle yarn
antigen bundle agkozak/zsh-z
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-completions
export NVM_LAZY_LOAD=true
export NVM_AUTO_USE=true
antigen bundle lukechilds/zsh-nvm
antigen apply
source ~/env.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment