Zsh: fixed syntax error

This commit is contained in:
pr0c3550r 2023-04-03 13:42:18 +02:00
parent e9fd8f4f15
commit 14c1378cd2

View file

@ -72,7 +72,7 @@ bindkey -M menuselect 'l' vi-forward-char
bindkey -M menuselect 'j' vi-down-line-or-history
local OS=$(grep -w "ID=..*" < /etc/os-release | sed 's/ID=//')
if [ $OS == "artix" ] || [ $OS == "arch" ]; then
if [ $OS = "artix" ] || [ $OS = "arch" ]; then
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
else