diff options
author | awy <awy@awy.one> | 2024-11-05 13:27:57 +0300 |
---|---|---|
committer | awy <awy@awy.one> | 2024-11-05 13:27:57 +0300 |
commit | 216f080056e45d9dbd8cd15f08f678e4b1fab0d7 (patch) | |
tree | 376dec29578b778b560fd2dbfc5d25fb35f4f9ee /.config/shell | |
parent | 37de05684d6dc4fc4fb55198d42051d03f26c844 (diff) |
zsh aliases
Diffstat (limited to '.config/shell')
-rw-r--r-- | .config/shell/aliasrc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index 4c5f00b..357285f 100644 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -1,9 +1,10 @@ -# Colorize commands +# Verbosity and settings that you pretty much just always are going to want. alias \ cp="cp -iv" \ mv="mv -iv" \ rm="rm -vI" +# Colorize commands alias \ ls="ls -hN --color=auto" \ grep="grep --color=auto" \ |