aboutsummaryrefslogtreecommitdiff
path: root/.config/shell/aliasrc
blob: ecc1766b77d444c045849fa51ba63da5caeaf64e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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="eza -h" \
	ll="eza --icons -lah" \
	cat="bat" \
	grep="rg --color=auto" \
	ip="ip -color=auto"

alias \
	v="nvim"