From 9dc5f0da8bcc82973bb5b595a5b9f3abf5cfb4a9 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Fri, 27 Jan 2017 14:51:28 +0100 Subject: [PATCH] [bash] add --group-directories-first to `ls` --- bash_profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash_profile b/bash_profile index 308a2fa..b7afd09 100644 --- a/bash_profile +++ b/bash_profile @@ -25,7 +25,7 @@ done # Useful aliases alias g="git" -alias ls="ls -F --color=auto" +alias ls="ls -F --color=auto --group-directories-first" alias la="ls -a" alias ll="ls -l" alias lla="ls -la"