conf2/zsh/.zshrc.d/prompt
2020-06-14 21:50:30 +02:00

22 lines
769 B
Plaintext

#setting prompt
#call powerline
#if [ -f `which powerline-daemon` ]; then
#powerline-daemon -q
#. /usr/lib/python3.6/site-packages/powerline/bindings/zsh/powerline.zsh
#fi
##set zsh theme et dircolor en fonction de term
if [ $TERM != "linux" ]; then
POWERLEVEL9K_MODE="awesome-fontconfig"
ZSH_THEME="powerlevel10k/powerlevel10k"
eval `dircolors ~/.dircolors/dircolors.256dark`
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(ssh context dir rbenv vcs)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status virtualenv root_indicator background_jobs history time)
else
ZSH_THEME="rkj-repos"
eval `dircolors ~/.dircolors/dircolors.ansi-dark`
fi
zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
if [ -z "$SSH_AUTH_SOCK" ] ; then
eval `ssh-agent -s`
fi