Files
linux-toolkit/sh/.zshrc
2023-06-14 13:15:47 -05:00

38 lines
1.1 KiB
Bash

# ________ ________ ___ ___ ________ ________
# |\_____ \|\ ____\|\ \|\ \|\ __ \|\ ____\
# \|___/ /\ \ \___|\ \ \\\ \ \ \|\ \ \ \___|
# / / /\ \_____ \ \ __ \ \ _ _\ \ \
# / /_/__\|____|\ \ \ \ \ \ \ \\ \\ \ \____
# |\________\____\_\ \ \__\ \__\ \__\\ _\\ \_______\
# \|_______|\_________\|__|\|__|\|__|\|__|\|_______|
# \|_________|
# by Coby Powers
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