blob: b7da08ef2fdb830902010c06b1aa6cf8097f2195 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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" \
ip="ip -color=auto"
alias \
v="nvim"
|