Inital commit
Good start Added roles for setting up a user with zsh config and ssh keys Also installation and configuriation of some packages
This commit is contained in:
15
roles/zsh/files/zshrc.zsh
Normal file
15
roles/zsh/files/zshrc.zsh
Normal file
@@ -0,0 +1,15 @@
|
||||
[[ $- != *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
|
Reference in New Issue
Block a user