-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
48 lines (33 loc) · 991 Bytes
/
zshrc
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
eval "$(dircolors $HOME/.dircolors)"
# Set up antigen
source ~/.antigen/antigen.zsh
antigen use oh-my-zsh
antigen bundle command-not-found
#antigen bundle vi-mode
#antigen bundle z
# Completions
antigen bundle git
antigen bundle pip
antigen bundle vagrant
antigen bundle vundle
# Autostart
antigen bundle ssh-agent
# fish style plugins
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-history-substring-search
#antigen bundle tarruda/zsh-autosuggestions
#antigen bundle zsh-users/zsh-completions src
antigen theme robbyrussell
antigen apply
# zsh-autosuggestions configuration
#zle-line-init() {
# zle autosuggest-start
#}
#zle -N zle-line-init
# zsh-history-substring-search configuration
# bind UP and DOWN arrow keys
zmodload zsh/terminfo
bindkey "$terminfo[kcuu1]" history-substring-search-up
bindkey "$terminfo[kcud1]" history-substring-search-down
# zsh-syntax-highlighting configuration
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main line root brackets)