0

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.

fartface87
  • 23
  • 3

1 Answers1

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