From ea674d3c242c51e129e8e316655a236c4fc72799 Mon Sep 17 00:00:00 2001 From: Aaron Johnson Date: Sat, 25 Aug 2018 02:27:38 -0500 Subject: [PATCH] Changed booleans to string comparison --- alias | 2 +- zshrc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/alias b/alias index 21cd0a6..139a1b1 100644 --- a/alias +++ b/alias @@ -1,4 +1,4 @@ -if [ $BSD_MODE ] +if [ $BSD_MODE = true ] then alias ls='ls -G' alias ll='ls -lGh' diff --git a/zshrc b/zshrc index 23ab0aa..4d7af36 100644 --- a/zshrc +++ b/zshrc @@ -19,7 +19,7 @@ source $HOME/.zsh/exports source $HOME/.zsh/bindkeys source $HOME/.zsh/completion source $HOME/.zsh/setopt -if [ $SYNTAX_HIGHLIGHT ] +if [ $SYNTAX_HIGHLIGHT = true ] then source $HOME/.zsh/zsh-syntax-highlight/zsh-syntax-highlighting.zsh fi