From ae7f2d461d45b666e0a4442fca2679e9ff023302 Mon Sep 17 00:00:00 2001 From: Matt Singleton Date: Wed, 8 Dec 2021 12:09:33 -0600 Subject: use gnu ls whether it's installed with or without a prefix --- config/zsh/20-appearance.zsh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'config/zsh') diff --git a/config/zsh/20-appearance.zsh b/config/zsh/20-appearance.zsh index e7132a8..be5d436 100644 --- a/config/zsh/20-appearance.zsh +++ b/config/zsh/20-appearance.zsh @@ -2,8 +2,11 @@ # colorize shell programs if ls --color -d . &>/dev/null 2>&1; then - alias ls='ls --color=tty' + alias ls='ls --color=auto' eval `dircolors ${XDG_CONFIG_HOME:-${HOME}/.config}/dircolors.conf` +elif (( $+commands[gls] )); then + alias ls='gls --color=auto' + eval `gdircolors ${XDG_CONFIG_HOME:-${HOME}/.config}/dircolors.conf` else alias ls='ls -G' export LSCOLORS="exgxbxdxcxegedxbxgxcxd" -- cgit v1.2.3