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