2022-03-14 00:16:44 +00:00
|
|
|
[[ $- != *i* ]] && return
|
|
|
|
|
2022-03-23 01:03:04 +00:00
|
|
|
PROMPT="{{ zsh_prompt }} "
|
2022-03-14 00:16:44 +00:00
|
|
|
setopt autocd extendedglob nomatch notify prompt_subst
|
|
|
|
autoload -Uz compinit && compinit
|
|
|
|
unsetopt beep
|
|
|
|
bindkey -v
|
|
|
|
|
|
|
|
[ -e ~/.zstyles ] && source ~/.zstyles
|
|
|
|
[ -e ~/.env ] && source ~/.env
|
|
|
|
|
|
|
|
for src in `/bin/ls ~/.zshrc.d`; do
|
|
|
|
[ -e $src ] && source $src
|
|
|
|
done
|
|
|
|
source ~/.zshrc.d/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|