Files
linux-toolkit/sh/.zshrc
2023-03-30 20:27:45 -05:00

28 lines
676 B
Bash

TOOLKIT=/etc/toolkit
ZSH=$TOOLKIT/sh/ohmyzsh
ZSH_THEME="gnzh"
ZSH_CUSTOM=$TOOLKIT/sh/ohmyzsh-custom
ZSH_CUSTOM_USER_SCRIPTS=$HOME/.zsh-scripts
ZSH_CACHE_DIR=$HOME/.zsh-cache
ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
plugins=(git extract docker docker-compose zsh-autosuggestions)
zstyle ':completion:*:*:docker:*' option-stacking yes
zstyle ':completion:*:*:docker-*:*' option-stacking yes
zstyle ':omz:update' mode auto # update automatically without asking
zstyle ':omz:update' frequency 14
source $ZSH/oh-my-zsh.sh
source $TOOLKIT/sh/load.sh
mkdir -p $ZSH_CUSTOM_USER_SCRIPTS
mkdir -p $ZSH_CACHE_DIR
load_scripts_in_dir $ZSH_CUSTOM_USER_SCRIPTS