What did I do?
I added this to my .vimrc
call plug#begin('~/.vim/plugged')
Plug 'morhetz/gruvbox'
call plug#end()
What is the Error?
E185: Cannot find color scheme 'gruvbox'
Do you know of a fix?
cp ~/.vim/plugged/gruvbox/colors/gruvbox.vim ~/.vim/colors/gruvbox.vim
The installation wiki says;
vim-plug
Add Plug 'morhetz/gruvbox' to your .vimrc and run :PlugInstall
Then add the line colorscheme gruvbox to your .vimrc file, and restart vim.
Am I doing something wrong why doesn't it work out of the box?