summaryrefslogtreecommitdiffstats
path: root/.zshrc
blob: f30f5622e075a23f141dfb0edd685ba58194efc6 (plain) (blame)
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
# ~/.zshrc configuration ~~ rgoncalves.se

. ~/.cprofile

set -o vi

precmd() {
	vcs_info
}

# keybinds
autoload -U history-search-end
zle -N history-beginning-search-backward-end history-search-end
zle -N history-beginning-search-forward-end history-search-end
bindkey "^[[A" history-beginning-search-backward-end
bindkey "^[[B" history-beginning-search-forward-end
bindkey "^[[1;5C" forward-word
bindkey "^[[1;5D" backward-word
bindkey "\[[H" beginning-of-line
bindkey "\[[F" end-of-line
bindkey "\e[3~" delete-char 
bindkey '^[[Z' reverse-menu-complete
zstyle ':completion:*' completer _complete
zstyle ':completion:*' matcher-list '' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' '+l:|=* r:|=*'
autoload -Uz compinit
compinit -u

# history
HISTSIZE=1000
HISTFILE=~/.zsh_history
SAVEHIST=1000
HISTDUP=erase
setopt INC_APPEND_HISTORY
setopt HIST_IGNORE_ALL_DUPS

# prompt
setopt PROMPT_SUBST
_hostname="@${HOST}"
_user="${USER}"
_separator=" "
_prompt="%%"
_dir="%~"
_color=002

autoload -Uz vcs_info
zstyle ':vcs_info:*' enable git svn
zstyle ':vcs_info:*' enable git
zstyle ':vcs_info:*' get-revision true
zstyle ':vcs_info:*' check-for-changes true
zstyle ':vcs_info:*' stagedstr "●"
zstyle ':vcs_info:*' unstagedstr "+"
zstyle ":completion:*" menu select
zstyle ':vcs_info:git*' formats "%F{$_color} ▒ %b %u%c"
vcs_info

PROMPT="${_user}%F{$_color}${_hostname}:"
PROMPT="${PROMPT}%F{015}${_dir}"
PROMPT="${PROMPT}${_separator}${_prompt}${_separator}%f"
RPROMPT='${vcs_info_msg_0_}'

(cat ~/.cache/dot/sequences 2>/dev/null &)
# clear
remember that computers suck.