diff options
-rw-r--r-- | .zshrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,7 +3,9 @@ for config_file ($HOME/.config/zsh/functions/*.zsh) source $config_file # dircolors # Set colors for ls output -eval $(dircolors ~/.dircolors) +if command -v dircolors > /dev/null; then + eval $(dircolors ~/.dircolors) +fi # Environment # |