]> git.draconx.ca Git - zshconf.git/blobdiff - zshrc
Add colour and interactivity aliases.
[zshconf.git] / zshrc
diff --git a/zshrc b/zshrc
index 130e70c1c192ecef3b3097a8d09fa3cebc6aa41b..b015d5b0a96c1bb0369425e36ea04ec6fb6cefa5 100644 (file)
--- a/zshrc
+++ b/zshrc
@@ -71,3 +71,12 @@ fi
 if [[ -n "$SSH_CONNECTION" ]]; then
        PS1="${PS1/\[32/[33}"
 fi
+
+# I like colours
+alias ls='ls --color=auto'
+alias grep='grep --color=auto'
+
+# I hate mistakes
+alias mv='mv -i'
+alias rm='rm -i'
+alias cp='cp -i'