23 lines
448 B
Bash
23 lines
448 B
Bash
TOOLKIT=/etc/toolkit
|
|
ZSH=$TOOLKIT/sh/ohmyzsh
|
|
ZSH_CUSTOM=$ZSH/custom
|
|
ZSH_THEME="awesomepanda"
|
|
TOOLKIT=/etc/toolkit
|
|
|
|
zstyle ':omz:update' mode auto # update automatically without asking
|
|
zstyle ':omz:update' frequency 14
|
|
|
|
ENABLE_CORRECTION="true"
|
|
|
|
COMPLETION_WAITING_DOTS="true"
|
|
|
|
plugins=(git)
|
|
|
|
ZSH_CACHE_DIR=$HOME/.cache/oh-my-zsh
|
|
if [[ ! -d $ZSH_CACHE_DIR ]]; then
|
|
mkdir $ZSH_CACHE_DIR
|
|
fi
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
source $TOOLKIT/sh/load.sh
|