blob: 4f10476c0290a986ceff30b237711534a99c7776 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
source ~/.zshrc.d/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
fpath=(~/.zshrc.d/plugins/completions/ $fpath)
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
for f in ~/.zshrc.d/local/*.zsh ; do
source "$f"
done 2>/dev/null
if [ -z "$USE_FAST_SYNTAX" ] ; then
source ~/.zshrc.d/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
else
source ~/.zshrc.d/plugins/fast-syntax-highlighting/F-Sy-H.plugin.zsh
fi
/bin/true
|