feat(zsh): completions

This commit is contained in:
Price Hiller 2022-03-17 15:34:00 -05:00
parent 0714398682
commit 92f0e919e5

6
.zshrc
View File

@ -87,6 +87,7 @@ COMPLETION_WAITING_DOTS="true"
plugins=(
git
zsh-autosuggestions
zsh-completions
zsh-syntax-highlighting
colored-man-pages
pip
@ -118,7 +119,12 @@ source $ZSH/oh-my-zsh.sh
# Enable suggestions
ZSH_AUTOSUGGEST_STRATEGY=(history completion)
# Enable fzf
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# Source the profile LAST
source ~/.profile
# Direnv
eval "$(direnv hook zsh)"