Переход на менеджер https://github.com/jandamm/zgenom
This commit is contained in:
42
.zshrc
42
.zshrc
@ -1,32 +1,18 @@
|
||||
zmodload zsh/zprof
|
||||
|
||||
for S in \
|
||||
"$ZDOTDIR/env.start.zsh" \
|
||||
"$ZDOTDIR/env.zsh" \
|
||||
"$ZDOTDIR/env.user.zsh" \
|
||||
\
|
||||
"$ZDOTDIR/history.zsh" \
|
||||
"$ZDOTDIR/history.user.zsh" \
|
||||
\
|
||||
"$ZDOTDIR/options.zsh" \
|
||||
"$ZDOTDIR/options.user.zsh" \
|
||||
\
|
||||
"$ZDOTDIR/plugins.zsh" \
|
||||
"$ZDOTDIR/plugins.user.zsh" \
|
||||
\
|
||||
"$ZDOTDIR/agents.zsh" \
|
||||
"$ZDOTDIR/agents.user.zsh" \
|
||||
\
|
||||
"$ZDOTDIR/prompt.zsh" \
|
||||
"$ZDOTDIR/prompt.user.zsh" \
|
||||
\
|
||||
"$ZDOTDIR/aliases.zsh" \
|
||||
"$ZDOTDIR/aliases.user.zsh" \
|
||||
\
|
||||
"$ZDOTDIR/compinit.zsh" \
|
||||
"$ZDOTDIR/compinit.user.zsh" \
|
||||
;
|
||||
do [ -e "$S" ] && source "$S"
|
||||
05-start \
|
||||
15-env \
|
||||
25-history \
|
||||
35-options \
|
||||
45-plugins \
|
||||
55-agents \
|
||||
65-prompt \
|
||||
75-aliases \
|
||||
78-scripts \
|
||||
85-compinit \
|
||||
95-finish
|
||||
do
|
||||
[ -e "$ZDOTDIR/$S.zsh" ] && source "$ZDOTDIR/$S.zsh"
|
||||
[ -e "$ZDOTDIR/$S.user.zsh" ] && source "$ZDOTDIR/$S.user.zsh"
|
||||
done
|
||||
|
||||
true
|
||||
|
Reference in New Issue
Block a user