dotfiles

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

commit 27e8ff909f7c312d17e863e21e2465da390280ea
parent dd43f8ad90ebca2f5093af634ad7fe111d3459f3
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Sun, 20 Jan 2019 22:19:51 +0100

Alias for preferred du implementation


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

diff --git a/shell/commonprofile b/shell/commonprofile @@ -81,10 +81,11 @@ alias mv='mv -iv' # Preferred 'mv' alias mkdir='mkdir -pv' # Preferred 'mkdir' implementation alias ls="ls -lh" # Preferred 'ls' implementation alias l="ls -lah" # Preferred 'ls -a' implementation -alias ll="ls -FGlAhpO@" # Preferred 'ls' implementation +alias ll="ls -FGlAhpO@" # Preferred detailed 'ls' implementation alias less='less -RXc' # Preferred 'less' implementation alias rsync='rsync -avhW --progress' # Preferred 'rsync' implementation alias rrsync='rsync -avhW --progress --remove-source-files' # Rsync, but remove source +alias du="du -skh" # Preferred 'du' implementation alias top='sudo htop' # Top should launch htop with sudo alias g='git' # Make git easier to type alias r='ranger' # Make Ranger easier to type