Sivert V. Sæther
b3d85445c5
Good start Added roles for setting up a user with zsh config and ssh keys Also installation and configuriation of some packages
15 lines
422 B
Bash
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 |