summaryrefslogtreecommitdiffstats
path: root/zsh/zshrc
blob: 1df501204570edc9eaec36dab3ba198a4ce97ead (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
PROMPT="%F{red}%D{%k:%M} %F{white}%~%(1v.%F{green}%1v%f.)%F{red}%2v%f %% "

zstyle ':completion:*' special-dirs true
zstyle ':completion:*:*:kill:*' menu yes select
zstyle ':completion:*:kill:*' force-list always

zmodload -a zsh/complist complist

if [ -e /usr/share/zsh/plugins/zsh-syntax-highlight/zsh-syntax-highlighting.zsh ]; then
	source /usr/share/zsh/plugins/zsh-syntax-highlight/zsh-syntax-highlighting.zsh
fi

setopt nobeep
setopt autocd
setopt listpacked
setopt listtypes
setopt extended_glob
setopt always_to_end
setopt auto_param_slash
setopt append_history
setopt share_history
setopt hist_ignore_dups
setopt inc_append_history
setopt extended_history

unset correct

export PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/games:~/etc/bin/
export EMAIL=xeno@thehappy.de
export DEBEMAIL=xeno@thehappy.de
export DEBFULLNAME="Stefan Ritter"
export QUILT_PATCHES=debian/patches
export QUILT_REFRESH_ARGS="-p ab --no-timestamps --no-index"
export EDITOR="vim"

HISTSIZE=1000
SAVEHIST=1000
HISTFILE=~/.zsh_history

autoload -U compinit; compinit
autoload zmv

alias c="clear"
alias ls="ls --color=auto"
alias l="ls -lh"
alias ll="ls -lah"
alias mkdir="mkdir -p"
alias pg="pgrep -fl"
alias rmrf="rm -rf"

alias g='git'
alias gee='geeqie'
alias gitserv="git daemon --verbose --reuseaddr --base-path=. --export-all ./.git"
alias iso="genisoimage -l -J -R -o cd.iso"
alias m="mtr --curses"
alias p="pal -r 7"
alias q="quilt"
alias r="rdesktop-vrdp -k de -K localhost"
alias s="screen -r -d"
alias t="task"
alias tmux='tmux -u'
alias v="vim"
alias vi="vim"
alias vbm="VBoxManage"
alias httpd="python2 -m SimpleHTTPServer"
alias unp="aunpack"

alias agu="sudo apt-get update"
alias agdu="sudo apt-get dist-upgrade"
alias acs="apt-cache search"
alias agi="sudo apt-get install"
alias as="apt-cache show"
alias purge="sudo apt-get --purge autoremove"

alias yi="sudo yum install"
alias yr="sudo yum remove"
alias ys="yum search"

if [ -e /usr/bin/yaourt ]; then
	pacman_bin='yaourt'
else
	pacman_bin='pacman'
fi

alias pi="sudo $pacman_bin -S"
alias pss="$pacman_bin -Ss"
alias pu="sudo $pacman_bin -Syu"
alias pr="sudo $pacman_bin -Rcsn"

alias svn-uscan='uscan --verbose --force-download --rename --repack --destdir=../tarballs'
alias svn-bp='svn-buildpackage --svn-builder=pdebuild --svn-ignore-new'
alias gendebpool='dpkg-scanpackages -m . /dev/null | gzip -9c > Packages.gz'
alias git-bp='git-buildpackage --git-ignore-new --git-tarball-dir=/home/xeno/debian/tarballs/ --git-upstream-branch=upstream --git-debian-branch=master --git-builder=pdebuild --debbuildopts "-i"'
alias sfnv='uscan --verbose --no-symlink --rename'

alias -g C='| wc -l'
alias -g G='| grep'
alias -g H='| head'
alias -g T='| tail'
alias -g L='| less'

alias -s jpg=geeqie

bindkey -e
bindkey '\e[7~' beginning-of-line
bindkey '\e[8~' end-of-line

shot() {
	if [ "$1" != '' ]; then
		scrot -c -d 3 $1
		scp $1 xeno:public_html/pub/
		rm $1
	else
		scrot -c -d 3
	fi
}

md() {
	mkdir $1
	cd $1
}

automon() {
	vga=$(xrandr -q | while read line; do if [[ $line =~ ^VGA1.*$ ]] { echo $line | cut -d " " -f 2 }; done)
	if [[ $vga = "disconnected" ]] {
		xrandr --output LVDS1 --auto --output VGA1 --off
	} else {
		xrandr --output LVDS1 --off --output VGA1 --auto
	}
}

vpn() {
	sudo openvpn --config /etc/openvpn/$1
}

#case $TERM in
#	rxvt*)
#    		precmd () {print -Pn "\e]0;%n@%m: %~\a"}
#	;;
#esac

cd ~/