commit b1353f320abfb27f6a1d3c48823b8207c41da241
parent 1fe68fa657447332bc68314ff8c73dfb177dd579
Author: Jake Bauer <jbauer@paritybit.ca>
Date: Sun, 12 Jul 2020 22:32:09 -0400
Add -v to ls alias
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.bashrc b/.bashrc
@@ -44,7 +44,7 @@ unset color_prompt
# Enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
- alias ls='ls -l --color=auto --group-directories-first'
+ alias ls='ls -vl --color=auto --group-directories-first'
alias grep='grep --color=auto'
fi