1
0
Fork 0
dotfiles-server/.config/shell/aliasrc
2022-08-05 13:48:53 +02:00

28 lines
597 B
Bash

#!/bin/sh
# Verbosity and settings that you pretty much just always are going to want.
alias \
cp="cp -iv" \
mv="mv -iv" \
rm="rm -vI" \
mkd="mkdir -pv" \
exa="exa -abghHliS" \
duf="duf -all" \
ls="ls -hN --color=auto --group-directories-first" \
grep="grep --color=auto" \
diff="diff --color=auto" \
ccat="highlight --out-format=ansi" \
ip="ip -color=auto"
# These common commands are just too long! Abbreviate them.
alias \
ka="killall" \
e="$EDITOR" \
au="apt uninstall" \
ar="apt reinstall" \
ai="apt install" \
aur="apt autoremove" \
# Misc.
alias \
vim="nvim" \