I put this in my init.vim file, yet when I run :PlugInstall, vim-plug does not show any of those plugins. Am I doing something wrong, or is vim-plug not working? Thanks.
Asked
Active
Viewed 66 times
1 Answers
1
You need to tell vim-plug where to installed the plugins:
Change
call plug#begin()
to
call plug#begin('~/.vim/plugged')

Andy
- 5,287
- 2
- 41
- 45