From 14c1378cd228a22896a4ce1712564ca549827af9 Mon Sep 17 00:00:00 2001 From: pr0c3550r Date: Mon, 3 Apr 2023 13:42:18 +0200 Subject: [PATCH] Zsh: fixed syntax error --- zsh/.config/zsh/.zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index e8c0299..5474706 100755 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -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