16 lines
263 B
Bash
16 lines
263 B
Bash
export ZSH_DISABLE_COMPFIX=true
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
export ZSH_CUSTOM="$HOME/.oh-my-zsh-custom"
|
|
|
|
ZSH_THEME="headline"
|
|
|
|
plugins=(
|
|
git
|
|
zsh-autosuggestions
|
|
zsh-syntax-highlighting
|
|
)
|
|
|
|
source ~/.keychain.sh
|
|
source ~/.rc.sh
|
|
source $ZSH/oh-my-zsh.sh
|