dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit ce9fc3c979a0526de6be3da57d9baf3e4ddffcae
parent fdecdcf1efb876a7d2dbb7edb6c0d550275a41a8
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Wed, 19 Sep 2018 16:09:17 +0200

Changed ls to not show hidden files by default

Diffstat:
Mshell/commonprofile | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/shell/commonprofile b/shell/commonprofile @@ -9,7 +9,8 @@ alias virc="vim ~/.vimrc" alias cp='cp -iv' # Preferred 'cp' implementation alias mv='mv -iv' # Preferred 'mv' implementation alias mkdir='mkdir -pv' # Preferred 'mkdir' implementation -alias l="ls -lah" # Preferred 'ls' implementation +alias ls="ls -lh" # Preferred 'ls' implementation +alias l="ls -lah" # Preferred 'ls -a' implementation alias ll="ls -FGlAhpO@" # Preferred 'ls' implementation alias less='less -RXc' # Preferred 'less' implementation alias rsync='rsync -avhW --progress' # Preferred 'rsync' implementation