dotfiles/lib/theme.zsh

17 lines
513 B
Bash
Raw Normal View History

2018-08-23 17:25:14 +00:00
#!/usr/bin/env zsh
configure_dircolors() {
[[ -f ~/.dircolors ]] && eval "$(dircolors ~/.dircolors)"
[[ -z "$LS_COLORS" ]] && eval "$(dircolors -b)"
zstyle ':completion:*' list-colors "${(@s.:.)LS_COLORS}"
}
configure_dircolors
2019-01-13 13:49:08 +00:00
# This ugly hack is required only for the agnoster theme which I use. I'm
# probably going to switch to another theme because it is so damn slow
autoload -Uz add-zsh-hook
_patch-prompt() { PROMPT="$PROMPT"$'\n%{%F{247}%}\u03bb>%{%b%f%} '; }
add-zsh-hook precmd _patch-prompt