aboutsummaryrefslogtreecommitdiff
path: root/99-plugins.zsh
blob: 18afb47a4b58c8eb3ddc4704d8e3d0b48f0e1af3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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

if ( which zoxide &> /dev/null ) ; then
  eval "$(zoxide init zsh)"
  alias cd=z
fi

/bin/true