17 lines
471 B
Bash
17 lines
471 B
Bash
source ~/.local/share/zeesh/base/breakerbox.zsh
|
|
source ~/.local/share/zeesh/base/zeesh.zsh
|
|
|
|
ticker_message "zeesh: bootstrap"
|
|
|
|
source ~/.local/share/zeesh/base/precmd.zsh
|
|
source ~/.local/share/zeesh/base/prompt.zsh
|
|
source ~/.local/share/zeesh/base/updates.zsh
|
|
|
|
# TODO: handle whether or not to load given modules]
|
|
for module in ~/.local/share/zeesh/modules/*.zsh; do
|
|
ticker_message "zeesh: loading module $(basename ${module})"
|
|
source ${module}
|
|
done
|
|
|
|
ticker_finish
|