diff --git a/lib/appearance.zsh b/lib/appearance.zsh
index c9bd25d818371999e7bc9786fd296010c3daba2e..ffee52b5e50a6e354d1adb5d94d877fe7ea3cb57 100644
--- a/lib/appearance.zsh
+++ b/lib/appearance.zsh
@@ -4,7 +4,8 @@ export LSCOLORS="Gxfxcxdxbxegedabagacad"
 #export LS_COLORS
 
 # Enable ls colors
-if [ "$DISABLE_LS_COLORS" != "true" ] then
+if [ "$DISABLE_LS_COLORS" != "true" ]
+then
   # Find the option for using colors in ls, depending on the version: Linux or BSD
   ls --color -d . &>/dev/null 2>&1 && alias ls='ls --color=tty' || alias ls='ls -G'
 fi