Переход на менеджер https://github.com/jandamm/zgenom

This commit is contained in:
2021-11-06 19:50:38 +03:00
parent e9b976f5f2
commit 00bd63ccc6
14 changed files with 230 additions and 169 deletions

42
.zshrc
View File

@ -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