vim-grammarous icon indicating copy to clipboard operation
vim-grammarous copied to clipboard

How to install this Plugin with vim plug

Open LeducH opened this issue 5 years ago • 3 comments

I want to use this plug in. I use vimplug as a plugin manager

what is the command I have to add in my plugin block

call plug#begin('~/.vim/plugged')

" Make sure you use single quotes

Plug '????????????????????????????????'
call plug#end()

LeducH avatar Aug 07 '20 09:08 LeducH

Both

Plug 'rhysd/vim-grammarous'

and

Plug 'https://github.com/rhysd/vim-grammarous/'

should do the trick.

mawkler avatar Sep 21 '20 21:09 mawkler

Hm.. I wonder why there isn't a guide for installation in README.md

asamountain avatar Mar 25 '21 09:03 asamountain

Hm.. I wonder why there isn't a guide for installation in README.md

Because it is pretty standard, and it is already documented on whichever package manager one prefer. It could be bothersome for one plugin creator to have to write down 20 different ways to install the plugin(which are essentially the same thing). For example, vim plug documents that on it's examples with lines as such

 " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
Plug 'junegunn/vim-easy-align'

" Any valid git URL is allowed
Plug 'https://github.com/junegunn/vim-github-dashboard.git'

SpyrosMourelatos avatar Mar 09 '22 09:03 SpyrosMourelatos