summaryrefslogtreecommitdiff
path: root/.zshrc
blob: 3afc303809ffddacc2a3eecafd94c7befd0952d0 (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
#!/bin/zsh

autoload -U compinit
compinit

zstyle ':completion:*:descriptions' format '%U%B%d%b%u'
zstyle ':completion:*:warnings' format '%BSorry, no matches for: %d%b'

unsetopt correctall
unsetopt equals

autoload -U promptinit
promptinit

prompt gentoo

export HISTSIZE=5000
export HISTFILE="$HOME/.history"
export SAVEHIST=$HISTSIZE
setopt hist_ignore_all_dups
setopt hist_ignore_space

# Breaks "eix ^asdf"
# setopt extendedglob

bindkey "^A" beginning-of-line
bindkey "^E" end-of-line

bindkey ' ' magic-space    # also do history expansion on space
bindkey '^R' history-incremental-search-backward

bindkey "^[[1;5C" forward-word
bindkey "^[[1;5D" backward-word

bindkey '^[[Z' reverse-menu-complete

# Make the delete key (or Fn + Delete on the Mac) work instead of outputting a ~
bindkey '^?' backward-delete-char
bindkey "^[[3~" delete-char
bindkey "^[3;5~" delete-char
bindkey "\e[3~" delete-char

export PATH=:$PATH:~/bin

[ -e /etc/profile.d/autojump.sh ] && . /etc/profile.d/autojump.sh
[ -e /etc/profile.d/vte-2.91.sh ] && . /etc/profile.d/vte-2.91.sh