dotfiles/lib/theme.zsh
2019-01-13 16:15:55 +02:00

17 lines
506 B
Bash

#!/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
# 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%{%B%}\u03bb>%{%b%} '; }
add-zsh-hook precmd _patch-prompt