dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit 8d0025558abf5ea50eef8420cc2bbcf12c401440
parent a0986c9b5d236d6d30389b25c22e017ccc17079e
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Sun, 28 Sep 2014 15:37:22 -0700

Bash: Make ls command show indicator after file/folder

Diffstat:
bashrc | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/bashrc b/bashrc @@ -99,7 +99,7 @@ bind '"\t":menu-complete' # enable color support if [ -x /usr/bin/dircolors ]; then test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" - alias ls='ls --color=auto' + alias ls='ls --color=auto -F' alias grep='grep --color=auto' fi @@ -113,7 +113,6 @@ alias ....='cd ../../..' # better ls-ing alias ll='ls -alF' alias la='ls -A' -alias l='ls -CF' # make these commands safer alias mv='mv -i'