Files
linux-toolkit/sh/.zshrc

23 lines
492 B
Bash

source /etc/toolkit/sh/load.sh
ZSH=$TOOLKIT/sh/ohmyzsh
ZSH_THEME="bira"
ZSH_CUSTOM_USER_SCRIPTS=$HOME/.zsh-scripts
ZSH_CACHE_DIR=$HOME/.zsh-cache
ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
plugins=(git)
zstyle ':omz:update' mode auto # update automatically without asking
zstyle ':omz:update' frequency 14
create_dir_if_not_exists $ZSH_CUSTOM_USER_SCRIPTS
create_dir_if_not_exists $ZSH_CACHE_DIR
load_scripts_in_dir $ZSH_CUSTOM_USER_SCRIPTS
source $ZSH/oh-my-zsh.sh