blob: bba5cb73e5d39de8e9472b91fb2f7de80eebf3f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
source ~/.zshrc.d/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
source ~/.zshrc.d/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.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
|