aboutsummaryrefslogtreecommitdiff
path: root/.config/shell/aliasrc
diff options
context:
space:
mode:
authorawy <awy@awy.one>2024-11-24 13:29:56 +0300
committerawy <awy@awy.one>2024-11-24 13:29:56 +0300
commit511afc41829d5626e9e9b84cbc3d4a7c14d63165 (patch)
tree14e7cb05f7206e39828bc49e6689f530615a41b9 /.config/shell/aliasrc
parent7b52375768323ce6b88156aa48b0d50ec2c8dafc (diff)
upload
Diffstat (limited to '.config/shell/aliasrc')
-rw-r--r--.config/shell/aliasrc14
1 files changed, 14 insertions, 0 deletions
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc
new file mode 100644
index 0000000..b7da08e
--- /dev/null
+++ b/.config/shell/aliasrc
@@ -0,0 +1,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"