16 lines
460 B
Bash
16 lines
460 B
Bash
# Loading keybindings first because activating Vi-bindings resets all keybinds.
|
|
source ~/.zsh/keybindings.zsh
|
|
source ~/.zsh/setopt.zsh
|
|
source ~/.zsh/general.zsh
|
|
source ~/.zsh/vcs.zsh
|
|
source ~/.zsh/prompt.zsh
|
|
source ~/.zsh/completion.zsh
|
|
source ~/.zsh/history.zsh
|
|
source ~/.zsh/aliases.zsh
|
|
source ~/.zsh/multiplexer.zsh
|
|
source ~/.zsh/exports.zsh
|
|
|
|
# Try loading additional local config if available
|
|
if [ -f ~/.zsh/custom.zsh ]; then
|
|
source ~/.zsh/custom.zsh
|
|
fi
|