-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_zshrc
187 lines (148 loc) · 5.54 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#!/bin/zsh
#
# Lines configured by zsh-newuser-install
# End of lines configured by zsh-newuser-install
# The following lines added by compinstall
zstyle :compinstall filename "~/.zshrc"
autoload -Uz compinit
#-------------------------------------------------------------- [ Module.Zmv ]
autoload -Uz zmv
# 命令提示符
#autoload -U promptinit
#promptinit
#prompt walters
#-------------------------------------------------------------- [ History ]
SAVEHIST=10000
HISTSIZE=10000
HISTFILE=~/.histfile
#-------------------------------------------------------------- [ My Vars ]
MY_X11_BROWER=chromium
MY_TTY_BROWER=w3m
MY_EMACS=emacs
MY_EMACS_CLIENT=emacsclient
MY_PDF_READER=evince
MY_TTY_VIM=vim
MY_X11_VIM=gvim
HIGHT_THEME=pablo
setopt INC_APPEND_HISTORY # append history record
setopt HIST_IGNORE_DUPS # remove duplicate command ($fc -l will get unique command list)
setopt EXTENDED_HISTORY # add timestaps
setopt HIST_IGNORE_ALL_DUPS # remove duplicate command in history files ($history will get unique command list)
setopt HIST_IGNORE_SPACE
setopt AUTO_PUSHD # auto pushd after cd , press $cd -<tab> show dir stack
setopt PUSHD_IGNORE_DUPS # remove duplicate path
setopt AUTOCD # type dir instead of 'cd dir'
# word pattern
WORDCHARS='*?_-[]~=&;!#$%^(){}<>'
#-------------------------------------------------------------- [ PATH ]
path=(~/bin ~/.zsh.d/bin $path /usr/local/bin)
#-------------------------------------------------------------- [ Prompt ]
. ~/.zsh.d/global/prompt.amas
precmd() {
prompt.amas.precmd
}
#======================================================
# Options
#
setopt AUTO_LIST
setopt AUTO_MENU
setopt MENU_COMPLETE
autoload -U compinit
compinit
zstyle ':completion:*' use-cache on
zstyle ':completion:*' cache-path ~/.zsh.cache
zstyle ':completion:*:match:*' original only
zstyle ':completion::prefix-1:*' completer _complete
zstyle ':completion:predict:*' completer _complete
zstyle ':completion:incremental:*' completer _complete _correct
zstyle ':completion:*' completer _complete _prefix _correct _prefix _match _approximate
#避免CVS目录出现在补全列表中
zstyle ':completion:*:(all-|)files' ignored-patterns '(|*/)CVS'
zstyle ':completion:*:cd:*' ignored-patterns '(*/)#CVS'
zstyle ':completion:*:cd:*' ignore-parents parent pwd
#路径补全
zstyle ':completion:*' expand 'yes'
zstyle ':completion:*' squeeze-shlashes 'yes'
zstyle ':completion::complete:*' '\\'
zstyle ':completion:*' menu select
zstyle ':completion:*:*:default' force-list always
# highlight complete list
whence dircolors > /dev/null && eval $(dircolors -b)
export ZLSCOLORS="${LS_COLORS}"
zmodload zsh/complist
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
#错误校正
zstyle ':completion:*' completer _complete _match _approximate
zstyle ':completion:*:match:*' original only
zstyle ':completion:*:approximate:*' max-errors 1 numeric
#kill 命令补全
compdef pkill=kill
compdef pkill=killall
zstyle ':completion:*:*:kill:*' menu yes select
zstyle ':completion:*:*:*:*:processes' force-list always
zstyle ':completion:*:processes' command 'ps -au$USER'
#补全类型提示分组
zstyle ':completion:*:matches' group 'yes'
zstyle ':completion:*' group-name ''
zstyle ':completion:*:options' description 'yes'
zstyle ':completion:*:options' auto-description '%d'
zstyle ':completion:*:descriptions' format "$FG[b-cyan]--- %d ---$TR"
zstyle ':completion:*:messages' format "$FG[yellow]--- %d ---$TR"
zstyle ':completion:*:warnings' format "$FG[b-red]--- No Matches Found ---$TR"
#If you end up using a directory as argument, this will remove the trailing slash (usefull in ln)
zstyle ':completion:*' squeeze-slashes true
#-------------------------------------------------------------- [ Zsh.Alises | Hashes ]
source ~/.zsh.d/global/hash-d
source ~/.zsh.d/global/alias-s
source ~/.zsh.d/global/alias-g
source ~/.zsh.d/global/alias
source ~/.zsh.d/global/alias.${$(uname):l}
function +fpath() {
[[ -z $fpath[(r)$1] ]] && fpath=("$1" $fpath)
}
function autoload.d() {
local x
for x in $argv; do
if [[ -d "$x" ]]; then
+fpath "$x"
autoload -- "$x"/*(:t)
fi
done
}
#-------------------------------------------------------------- [ Zsh.PreludeFunctions ]
autoload.d ~zshd/funcs.d ~self.fun
autoload.d ~zshd/libs/amasm
autoload.d ~zshd/libs/phunter
autoload.d ~zshd/libs/crypto
autoload.d ~zshd/libs/date
#-------------------------------------------------------------- [ Zsh.Zle.UserWidget ]
autoload.d ~/.zsh.d/zle.d
set -A zleUserWidget $(echo ~/.zsh.d/zle.d/*(:t))
for func in $zleUserWidget; do
zle -N $func
done
#-------------------------------------------------------------- [ Zsh.CompletionFunctions]
autoload.d ~/.zsh.d/completion.funcs
compinit
#-------------------------------------------------------------- [ Zsh.KeyBindings ]
source ~/.zsh.d/global/bindkey
start-emacs-client() {
$MY_EMACS_CLIENT -n "$@" || ( $MY_EMACS -T Emacs --name main && $MY_EMACS_CLIENT -n "$@" )
}
#-------------------------------------------------------------- [ Etc.Modules ]
# TODO(amas): move it to completion dir
import() {
local target="@*";
[[ -r "$target" ]] && . "$target"
}
[[ -f ~/.namedir ]] && . ~/.namedir
[[ -f ~/.profile ]] && . ~/.profile
[[ -f ~/.alias ]] && . ~/.alias
source ~/.zsh.d/libs/openai.zsh
source ~/.zsh.d/libs/misc.zsh
export EDITOR=vim
source ~/.zsh.d/libs/ai.zsh
# 防止idea抽风
export _JAVA_AWT_WM_NONREPARENTING=1