blob: 9ba14660438dd1974a1e5096849a0e8638a86fff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# vim: ft=zsh
autoload -Uz colors && colors
HISTFILE=~/.histfile
HISTSIZE=10000
SAVEHIST=10000
setopt appendhistory
setopt extendedglob
setopt hist_ignore_dups
setopt hist_expire_dups_first
setopt extended_history
setopt inc_append_history
setopt promptsubst
unsetopt nomatch
bindkey -e
autoload -U select-word-style
select-word-style bash
# Delete key workaround
bindkey "^[[3~" delete-char
bindkey "^[3;5~" delete-char
|