You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'gls' and 'gdircolors' are available. So if I do below colors and directory dirs-first is working.
$> git diff
diff --git a/modules/utility/init.zsh b/modules/utility/init.zsh
index a2e5c2b..4400cf0 100644
--- a/modules/utility/init.zsh
+++ b/modules/utility/init.zsh
@@ -73,6 +73,12 @@ if zstyle -T ':prezto:module:utility' safe-ops; then
fi
# ls
+
+if is-callable 'gdircolors'; then
+ alias dircolors='gdircolors'
+ alias ls="${aliases[ls]:-gls}"
+fi
+
if is-callable 'dircolors'; then
# GNU Core Utilities
Can you check if coreutils has been installed ?
The text was updated successfully, but these errors were encountered:
After installing coreutils via below command
$> brew install coreutils
'gls' and 'gdircolors' are available. So if I do below colors and directory dirs-first is working.
Can you check if coreutils has been installed ?
The text was updated successfully, but these errors were encountered: