summaryrefslogtreecommitdiff
path: root/.zsh/zshrc
blob: 1bf698e14bbfcdc5a475512bffbb81d01aa4f2bb (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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# Alias definition {{{
#################################################

# the | cmd aliases
alias -g L='| less'
alias -g H='| head'
alias -g T='| tail'
alias -g G='| grep'

# > aliases
alias -g NE='2> /dev/null'
alias -g NO='> /dev/null'
alias -g NOE='&> /dev/null'

# "vim" mappings
alias :e='gvim'
alias :q='exit'

# ls
alias ls='ls --color=auto'
alias ll='ls -l'
alias la='ls -a'

# emerge stuff
alias AK='ACCEPT_KEYWORDS="~x86"'
alias NS='FEATURES="nostrip" CFLAGS="-O0 -ggdb -pipe -march=native" CXXFLAGS="${CFLAGS}"'
alias e="eix -e"
alias i="eix -I"
alias ee='open_ebuild vim'
alias eeg='open_ebuild gvim'
alias cdu='open_ebuild _cdu'

# misc
alias cdp='cd ~/dev/portato'
alias g='git'
alias h='history'
alias pstart='./portato.py -F'
alias quickweb='python -c "import SimpleHTTPServer;SimpleHTTPServer.test()"'
alias CH='./configure --help | less'
alias FF='noglob firefox'
alias IE='isabelle emacs -m iff'

# the config management stuff
alias config='GIT_DIR=$HOME/.config.git/ git --work-tree=$HOME'
alias cstg='GIT_DIR=$HOME/.config.git stg'

# }}}

# Functions {{{
#################################################

source ~/.zsh/zshfunctions

# }}}

# Test for an interactive shell {{{ 
# There is no need to set anything past this point for scp and rcp, 
# and it's important to refrain from outputting anything in those cases.
if [[ $- != *i* ]] ; then
 # Shell is non-interactive.  Be done now!
    return
fi
# }}}

# Completion {{{
#################################################
autoload -U compinit 
compinit

zmodload -i zsh/complist
zstyle ':completion::complete:*' use-cache 1

# the different style options
zstyle ":completion:*" verbose yes # be verbose
zstyle ":completion:*:descriptions" format "%S%d%s" # show descriptions
zstyle ":completion:*:corrections" format "%S%d%s"
zstyle ":completion:*:warnings" format "%S%d%s"
zstyle ":completion:*:errors" format "%S%d%s"

zstyle ":completion:*" menu select=2 # show menu
zstyle ":completion:*:default" select-prompt "%SMatch %M    %P%s" # show statusline

zstyle ":completion::complete:*" rehash true # rehash always :)

[[ -z $LS_COLORS ]] && eval $(dircolors) # needed for next line
zstyle ":completion:*:default" list-colors ${(s.:.)LS_COLORS} # make filecompletions being colored

# }}}

# Prompt {{{
#################################################
autoload -U promptinit
promptinit

local prompt_color="green red"
[[ -n "$SSH_CLIENT" ]] && prompt_color="yellow cyan"

prompt gentoo blue ${=prompt_color}

# remove RPROMPT when command finished
setopt transient_rprompt

# load colors
autoload -U colors
colors

# show smilies in prompt :)
RPROMPT="%(?.%S%{$fg[green]%}:).%S%{$fg[red]%}:()%{$reset_color%}%s"

# Screen indication
[[ $TERM == "screen" ]] && RPROMPT="${RPROMPT} %B%{$fg[cyan]%}(S #$WINDOW)%{$reset_color%}%b"

# vcs stuff for prompt
setopt prompt_subst

if [[ $ZSH_VERSION == 4.3.<->* ]]; then
    autoload -Uz vcs_info

    zstyle ":vcs_info:*" enable bzr cvs svn git hg
    zstyle ":vcs_info:*" formats "%B%{$fg[yellow]%}[%{$fg[green]%}(%u%c) %{$fg[yellow]%}%b:%1.7i%f%%b (%s)%B%{$fg[yellow]%}]%f%%b"
    zstyle ":vcs_info:*" branchformat "%b"
    zstyle ":vcs_info:*" get-revision true
    zstyle ":vcs_info:*" check-for-changes true
    zstyle ":vcs_info:*" max-exports 1
    
    # hg stuff
    zstyle ":vcs_info:hg:*" unstagedstr '*'
    zstyle ":vcs_info:hg:*" hgrevformat '%r'

    # bzr stuff
    zstyle ":vcs_info:bzr:*" unstagedstr '*'

    if type bzr NOE; then
        if type bzrc NOE; then
            bzr service NOE &!
            zstyle ":vcs_info:bzr:*" command bzrc
            zstyle ":vcs_info:bzr:*" use-simple false
        else
            zstyle ":vcs_info:bzr:*" use-simple true
        fi
    fi

    RPROMPT='${vcs_info_msg_0_:+"${vcs_info_msg_0_} "}'"${RPROMPT}"
else
    vcs_info () {} # dummy
fi

# }}}

# XTerm Window Title {{{
#################################################
autoload promptnl
case $TERM in
xterm*|rxvt*|Eterm)
    precmd() 
    {
        echo -ne "\033]0;${USER}@$(hostname):${PWD/$HOME/~}\007";
        promptnl
        vcs_info
    }
;;
screen)
    precmd()
    {
        echo -ne "\033_${USER}@$(hostname):${PWD/$HOME/~}\033\\";
        promptnl
        vcs_info
    }
;;
esac
# }}}

# Key bindings {{{
#################################################
bindkey -e # use emacs style :)
if [[ $ZSH_VERSION == 4.3.10 ]]; then
    bindkey "^R" history-incremental-pattern-search-backward
    bindkey "^S" history-incremental-pattern-search-forward
else
    bindkey "^R" history-incremental-search-backward
    bindkey "^S" history-incremental-search-forward
fi

bindkey "^[-" copy-prev-word

case $TERM in 
    xterm*|aterm|rxvt)
        bindkey "^[OH" beginning-of-line
        bindkey "^[OF" end-of-line
        bindkey "^[[3~" delete-char
        ;;
    screen)
        bindkey "^[[1~" beginning-of-line
        bindkey "^[[4~" end-of-line
        bindkey "^[[3~" delete-char
        ;;
esac
# }}}

# History {{{
#################################################
HISTSIZE=10000
SAVEHIST=12000
HISTFILE=~/.zshhistory
setopt hist_no_store # no not store history related commands
setopt inc_append_history # append incrementally instead of waiting until the shell exists
setopt hist_verify # for history related commands: reload the expanded version instead of executing it directly
setopt hist_no_functions # do not store function definitions

setopt hist_ignore_dups # ignore duplicates
setopt hist_ignore_all_dups # ignore _all_ duplicates

# }}}

# Misc Options {{{
#################################################
setopt no_notify # do not disturb if bg-process has quit
setopt no_bg_nice # start bg-processes with the same nice-level as fg-p~
setopt auto_cd # if you type a dir take it as a cd
setopt correct # correct possibly wrong command names
setopt complete_in_word

# }}}

# vim: fdm=marker