diff options
Diffstat (limited to 'dotfiles/.config/zsh/.zshrc')
-rw-r--r-- | dotfiles/.config/zsh/.zshrc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dotfiles/.config/zsh/.zshrc b/dotfiles/.config/zsh/.zshrc index ad70614..a7f3000 100644 --- a/dotfiles/.config/zsh/.zshrc +++ b/dotfiles/.config/zsh/.zshrc @@ -71,5 +71,12 @@ zle -N zle-keymap-select [ -f "$HOME/.cache/colorscheme" ] && trap "source $HOME/.cache/colorscheme" DEBUG -[ -f /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ] && +if [ -f /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ] +then + # Arch/Artix . /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +elif [ -f /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ] +then + # Debian + . /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +fi |