-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_zshrc
24 lines (22 loc) · 1.23 KB
/
dot_zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Fig pre block. Keep at the top of this file.
[[ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]] && builtin source "$HOME/.fig/shell/zshrc.pre.zsh"
[ -f $HOMEBREW_PREFIX/opt/antidote/share/antidote/antidote.zsh ] && source $HOMEBREW_PREFIX/opt/antidote/share/antidote/antidote.zsh
[ -f $HOME/zsh/zcompdump.zsh ] && source $HOME/zsh/zcompdump.zsh
[ -f $HOME/.zsh_plugins.sh ] && source $HOME/.zsh_plugins.sh # Load zsh plugins, generates automatically
[ -f $HOME/zsh/setopt.zsh ] && source $HOME/zsh/setopt.zsh
[ -f $HOME/zsh/exports.zsh ] && source $HOME/zsh/exports.zsh
[ -f $HOME/zsh/commands.zsh ] && source $HOME/zsh/commands.zsh
[ -f $HOME/zsh/aliases.zsh ] && source $HOME/zsh/aliases.zsh
[ -f $HOME/zsh/private_aliases.zsh ] && source $HOME/zsh/private_aliases.zsh
# [ -f $HOME/zsh/bindkeys.zsh ] && source $HOME/zsh/bindkeys.zsh
[ -f $HOME/zsh/history.zsh ] && source $HOME/zsh/history.zsh
[ -f ~/.fzf.zsh ] && source $HOME/.fzf.zsh
# TODO: get to new convention. Name files like 10-file.zsh to have prefix for source order
# for i in ${HOME}/.bash.d/*.sh
# do
# if [ -r ${i} ] ; then
# . ${i}
# fi
# done
# Fig post block. Keep at the bottom of this file.
[[ -f "$HOME/.fig/shell/zshrc.post.zsh" ]] && builtin source "$HOME/.fig/shell/zshrc.post.zsh"