diff options
Diffstat (limited to 'zsh/zshrc')
-rw-r--r-- | zsh/zshrc | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -1,8 +1,18 @@ -if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then - source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" +# Use powerline +USE_POWERLINE="true" +# Has weird character width +# Example: +# is not a diamond +HAS_WIDECHARS="false" +# Source manjaro-zsh-configuration +if [[ -e /usr/share/zsh/manjaro-zsh-config ]]; then + source /usr/share/zsh/manjaro-zsh-config fi -source ~/.config/zsh/p10k.zsh -source ~/.config/zsh/p10k/powerlevel10k.zsh-theme +# Use manjaro zsh prompt +if [[ -e /usr/share/zsh/manjaro-zsh-prompt ]]; then + source /usr/share/zsh/manjaro-zsh-prompt +fi + source ~/.config/zsh/antigen.zsh antigen bundle zsh-users/zsh-syntax-highlighting |