1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-07-07 03:59:25 +00:00

Fix issue #1635. Option to disable GNU ls to group directories first.

This commit is contained in:
Tercio Gaudencio Filho
2018-10-15 09:56:41 -03:00
committed by Indrajit Raychaudhuri
parent bfe1815cbf
commit 1ed5331e84
2 changed files with 10 additions and 1 deletions

View File

@ -73,7 +73,10 @@ fi
# ls
if is-callable 'dircolors'; then
# GNU Core Utilities
alias ls='ls --group-directories-first'
if zstyle -T ':prezto:module:utility:ls' dirs-first; then
alias ls="${aliases[ls]:-ls} --group-directories-first"
fi
if zstyle -t ':prezto:module:utility:ls' color; then
# Call dircolors to define colors if they're missing