2022-12-18 15:58:00 +00:00
|
|
|
# shellcheck shell=bash
|
|
|
|
# vim: ft=sh
|
|
|
|
|
2021-12-07 05:22:48 +00:00
|
|
|
# Profiling start
|
|
|
|
# zmodload zsh/zprof
|
|
|
|
|
2021-09-08 06:43:54 +00:00
|
|
|
for S in \
|
2021-11-06 16:50:38 +00:00
|
|
|
05-start \
|
2022-12-17 16:17:36 +00:00
|
|
|
15-options \
|
2021-11-06 16:50:38 +00:00
|
|
|
25-history \
|
2022-12-18 02:13:48 +00:00
|
|
|
42-zinit \
|
2022-12-17 16:17:36 +00:00
|
|
|
45-plugins \
|
2021-11-06 16:50:38 +00:00
|
|
|
55-agents \
|
2022-12-23 08:39:49 +00:00
|
|
|
62-scripts \
|
|
|
|
68-aliases \
|
|
|
|
72-widgets \
|
|
|
|
78-keybindings \
|
2022-12-18 02:13:48 +00:00
|
|
|
82-completion \
|
2022-12-17 16:17:36 +00:00
|
|
|
88-prompt \
|
2021-11-06 16:50:38 +00:00
|
|
|
95-finish
|
|
|
|
do
|
2021-11-06 17:29:19 +00:00
|
|
|
N="${S//[0-9\-]/}"
|
2022-12-18 15:58:00 +00:00
|
|
|
if [[ -r "$ZDOTDIR/$S.pre.zsh" ]]; then source "$ZDOTDIR/$S.pre.zsh"; fi
|
|
|
|
if [[ -r "$ZDOTDIR/$S.zsh" ]]; then source "$ZDOTDIR/$S.zsh"; fi
|
|
|
|
if [[ -r "$ZDOTDIR/$S.user.zsh" ]]; then source "$ZDOTDIR/$S.user.zsh"; fi
|
|
|
|
if [[ -r "$ZDOTDIR/$N.user.zsh" ]]; then source "$ZDOTDIR/$N.user.zsh"; fi
|
|
|
|
if [[ -r "$ZDOTDIR/$S.post.zsh" ]]; then source "$ZDOTDIR/$S.post.zsh"; fi
|
2021-09-08 06:43:54 +00:00
|
|
|
done
|
2021-04-19 08:32:04 +00:00
|
|
|
|
2021-12-07 05:22:48 +00:00
|
|
|
# zprof
|
|
|
|
|