coc for vim

This commit is contained in:
Barak Michener 2019-05-21 18:29:35 -07:00
parent 1225e52427
commit a3274d364e
5 changed files with 66 additions and 26 deletions

7
.zshrc
View file

@ -136,3 +136,10 @@ if [ -f "$HOME/.zshrc_work" ]; then source "$HOME/.zshrc_work"; fi
if [ -f "$HOME/.config/zsh/fzf-completion.zsh" ]; then source "$HOME/.config/zsh/fzf-completion.zsh"; fi
if [ -f "$HOME/.config/zsh/fzf-key-bindings.zsh" ]; then source "$HOME/.config/zsh/fzf-key-bindings.zsh"; fi
# This enables autocomplete for kubectl
if [ $commands[kubectl] ]; then
source <(kubectl completion zsh)
fi
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"