21 lines
847 B
Plaintext
21 lines
847 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"
|
|
source /usr/share/zsh-theme-powerlevel9k/powerlevel9k.zsh-theme &> /dev/null||source /usr/share/powerlevel9k/powerlevel9k.zsh-theme &> /dev/null
|
|
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
|
|
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
|