[zsh] Fiddle with powerlevel9k

This commit is contained in:
Sebastian Schulze 2018-01-23 08:46:24 +01:00
parent ded06b632f
commit dfbc763b3a
Signed by: bascht
GPG Key ID: 5BCB1D3B4D38A35A
4 changed files with 16 additions and 4 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "home/.oh-my-zsh/custom/themes/powerlevel9k"]
path = home/.oh-my-zsh/custom/themes/powerlevel9k
url = https://github.com/bhilburn/powerlevel9k.git

View File

@ -6,3 +6,4 @@
.config/fish
.config/fish/functions
bin
.oh-my-zsh/custom/themes

@ -0,0 +1 @@
Subproject commit 862ff70bfc965945f07fcabfc4a4d9f5f58e4fe2

View File

@ -3,13 +3,19 @@ export ZSH=/home/bascht/.oh-my-zsh
ZSH_THEME="powerlevel9k/powerlevel9k" # previously: juanghurtado
POWERLEVEL9K_MODE='nerdfont-complete'
POWERLEVEL9K_FOLDER_ICON='blub'
POWERLEVEL9K_HOME_ICON=' '
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir rbenv vcs)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status root_indicator background_jobs public_ip time)
POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR="\uE0B4"
POWERLEVEL9K_LEFT_SUBSEGMENT_SEPARATOR="%F{$(( $DEFAULT_BACKGROUND - 2 ))}|%f"
POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR="\uE0B6"
POWERLEVEL9K_RIGHT_SUBSEGMENT_SEPARATOR="%F{$(( $DEFAULT_BACKGROUND - 2 ))}|%f"
POWERLEVEL9K_PUBLIC_IP_ICON=" "
POWERLEVEL9K_OK_ICON=" "
POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR="\uE0C6 "
#POWERLEVEL9K_LEFT_SUBSEGMENT_SEPARATOR="%F{$(( $DEFAULT_BACKGROUND - 2 ))}|%f"
POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR="\uE0C7"
POWERLEVEL9K_RIGHT_SUBSEGMENT_SEPARATOR="%F{$(( $DEFAULT_BACKGROUND - 2 ))}\uE0B7%f"
#POWERLEVEL9K_RIGHT_SUBSEGMENT_SEPARATOR="%F{$(( $DEFAULT_BACKGROUND - 2 ))}\uE0B7%f"
plugins=(
@ -35,6 +41,7 @@ plugins=(
)
source $ZSH/oh-my-zsh.sh
eval "$(direnv hook zsh)"
alias va="vagrant"
alias tm="tmux -2"