Any shell command to directly let dein.vim to install plugins?

442 views Asked by At

Any shell command to directly let dein.vim to install plugins?

I want to set up my own (Neo)Vim environment on a docker container. It would be nice if I could install vim plugins on only Dockerfile (without executing nvim).

1

There are 1 answers

1
sudo bangbang On BEST ANSWER

This can be done with -c flag.

nvim -c 'call dein#install() | q'

This will open up vim run commands (in this case dein#install and quit)