-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
125 lines (97 loc) · 3.23 KB
/
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
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
################################################################################
# Zplug https://github.com/zplug/zplug
################################################################################
source ~/.zplug/init.zsh
zplug "djui/alias-tips"
zplug "mafredri/zsh-async"
zplug "plugins/git", from:oh-my-zsh
zplug "modules/utility", from:prezto
zplug "plugins/adb", from:oh-my-zsh
zplug "sindresorhus/pure", use:pure.zsh, as:theme
zplug "zdharma/fast-syntax-highlighting", defer:2
zplug "zsh-users/zsh-autosuggestions"
# Install plugins if there are plugins that have not been installed
if ! zplug check --verbose; then
printf "Install? [y/N]: "
if read -q; then
echo; zplug install
fi
fi
# Then, source plugins and add commands to $PATH
zplug load
################################################################################
# Autoload
################################################################################
autoload -U up-line-or-beginning-search
autoload -U down-line-or-beginning-search
autoload -Uz compinit
compinit
################################################################################
# Environment
################################################################################
#PATH
export PATH=$PATH:$HOME/.cargo/bin
# Continue to use ZSH
export SHELL=/bin/zsh
# Neovim
export EDITOR=nvim
export VISUAL=$EDITOR
# Darkness
export BACKGROUND=dark
# Support utf-8
export LANG="en_US.UTF-8"
export LC_COLLATE="en_US.UTF-8"
export LC_CTYPE="en_US.UTF-8"
export LC_MESSAGES="en_US.UTF-8"
export LC_MONETARY="en_US.UTF-8"
export LC_NUMERIC="en_US.UTF-8"
export LC_TIME="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
################################################################################
# History
################################################################################
# Command history configuration
if [ -z "$HISTFILE" ]; then
HISTFILE=$HOME/.histfile
fi
HISTSIZE=1000000
SAVEHIST=1000000
setopt append_history
setopt extended_history
setopt hist_expire_dups_first
# Ignore duplication command history list
setopt hist_ignore_dups
setopt hist_ignore_space
setopt hist_verify
# Shares history and incrementally adds to the history file
setopt inc_append_history
setopt share_history
################################################################################
# Alias
################################################################################
################################################################################
# Options
################################################################################
# Invoke `cd` if typing out just a directory
setopt autocd
setopt extendedglob
################################################################################
# Contextual history
################################################################################
# Search history and highlight
searchup() {
up-line-or-beginning-search
_zsh_highlight_call_widget
}
# Up arrow uses history for searching
zle -N searchup
bindkey "^[[A" searchup
# Search history and highlight
searchdown() {
down-line-or-beginning-search
_zsh_highlight_call_widget
}
# Down arrow uses history for searching
zle -N searchdown
bindkey "^[[B" searchdown
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh