diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-03 00:16:48 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-03 00:16:48 +0400 |
commit | eeb5250ced6cf4565f64946decc634c8f0585c21 (patch) | |
tree | b865870844dc81fd165d0aa5af03efa95985e92a /config/shell/aliasrc | |
parent | b62cfe9ed4db8482a091c98e7dbe21c3239dbc52 (diff) |
config/shell/aliasrc: colorize `ip` command, `sl` from `ls` to `ls
--color=auto`
Diffstat (limited to 'config/shell/aliasrc')
-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 c9e8f80..8d2f6fd 100644 --- a/config/shell/aliasrc +++ b/config/shell/aliasrc @@ -6,6 +6,7 @@ [ -x "$(command -v neomutt)" ] && alias mutt="neomutt" alias ls="ls --color=auto --group-directories-first -p" +alias ip="ip -color=auto" alias grep="grep --color=auto" alias ping="ping -c 2" alias clear="clear -x" @@ -22,7 +23,7 @@ alias push="git remote show | xargs -I remote git push remote master" # push mas alias suod="sudo" alias maek="make" alias meak="make" -alias sl="ls" +alias sl="ls --color=auto --group-directories-first -p" alias claer="clear -x" alias clera="clear -x" alias gti="git" |