added zsh theme

This commit is contained in:
Elena 2019-02-22 22:02:33 +02:00
parent 67b11d1981
commit a76c07f709

16
lena.zsh-theme Normal file
View file

@ -0,0 +1,16 @@
# Minimal zsh theme
# Requires Nerd Fonts for the icons
# Configuration
num_dirs=2 # Use 0 for full path
truncated_path="%F{white}%$num_dirs~%f"
decoration="%F{red}%F{magenta}%F{cyan}%f"
background_jobs="%(1j.%F{green} %f.)"
non_zero_return_value="%(0?..%F{yellow} %f)"
# Left part of prompt
PROMPT='$truncated_path $decoration '
# Right part of prompt
RPROMPT='$background_jobs $non_zero_return_value'
# Input in bold
zle_highlight=(default:bold)