summaryrefslogtreecommitdiff
path: root/.zsh/zshrc/30_aliases
blob: f52c9e57265aed5ba3c869ef61aae550fc201d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# 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'

# enable color support of ls
if [ "${TERM}" != "dumb" ] ; then
	is_darwin || alias ls='ls --color=auto'
fi

# use colors when browsing man pages, but only if not using LESS_TERMCAP_*
if [ -z "$LESS_TERMCAP_md" ] ; then
	[ -d ~/.terminfo/ ] && alias man='TERMINFO=~/.terminfo/ LESS=C TERM=mostlike PAGER=less man'
fi

# 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'

# python
alias pylab='ipython --pylab'
alias qpylab='ipython qtconsole --ConsoleWidget.font_family="Inconsolata" --ConsoleWidget.font_size=11 --colors=Linux --pylab '

# 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'

# Quake 3 (on the second screen)
alias q3='SDL_VIDEO_FULLSCREEN_HEAD=1 ioquake3'

# host aliases
alias distanz="ssh distanz.ch -t \"screen -dRU\""
alias distanz6="ssh -6 6.distanz.ch -t \"screen -dRU\""
alias sym=distanz
alias sym6=distanz6
alias lema="ssh lema.distanz.ch -t \"screen -dRU\""

# vim:ft=zsh