ansible/roles/zsh/files/zshrc.zsh

15 lines
422 B
Bash
Raw Normal View History

[[ $- != *i* ]] && return
PROMPT="%F{yellow}% %n%F{green}% @%F{blue}% %m %F{#bb33bb}% %1~%f > "
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