summaryrefslogtreecommitdiff
path: root/.zsh/zshrc/30_aliases
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2010-03-09 18:46:07 +0100
committerTobias Klauser <klto@zhaw.ch>2010-03-09 18:46:07 +0100
commit01409c293039b343fd083920b92d355fec0987ed (patch)
tree4f4239a97efe5261e99cd601e406d83ee7cbf4a8 /.zsh/zshrc/30_aliases
parent212734d392269d060e01326978e6ef25e202c17f (diff)
Add zshrc directory
Diffstat (limited to '.zsh/zshrc/30_aliases')
-rw-r--r--.zsh/zshrc/30_aliases37
1 files changed, 37 insertions, 0 deletions
diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases
new file mode 100644
index 0000000..caedfd1
--- /dev/null
+++ b/.zsh/zshrc/30_aliases
@@ -0,0 +1,37 @@
+# zshrc/30_aliases
+#
+# Define command aliases
+#
+# Copyright © 2010 Tobias Klauser <tklauser@distanz.ch>
+# Released under the terms of the Artistic Licence 2.0
+#
+# Source repository: git://git.distanz.ch/dotfiles/zsh.git
+
+# TODO: look at the salias function in .zshrc.grml
+
+# command aliases
+alias l='ls'
+alias ll='ls -l'
+alias la='ls -la'
+alias cd..='cd ..'
+alias ...='cd ../../'
+alias cal='cal -m'
+alias egrep='egrep --color=auto'
+alias grep='grep --color=auto'
+alias m='mount'
+alias u='umount'
+
+# no spelling correction for these
+alias cp='nocorrect cp'
+alias ln='nocorrect ln'
+alias mkdir='nocorrect mkdir'
+alias mv='nocorrect mv'
+alias rm='nocorrect rm'
+
+# get top 10 shell commands
+alias top10='print -l ? ${(o)history%% *} | uniq -c | sort -nr | head -n 10'
+
+# bofh fortunes
+alias bofh='fortune bofh-excuses'
+
+# vim:ft=zsh