ansible/roles/zsh/files/zshrc.zsh
Sivert V. Sæther b3d85445c5 Inital commit
Good start
Added roles for setting up a user with zsh config and ssh keys
Also installation and configuriation of some packages
2022-03-14 01:16:44 +01:00

15 lines
422 B
Bash

[[ $- != *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