2020 09 23 Using Vim Plugins
by default vim doesnt use plugins, obviously…
but you can use them
for example a “Markdown Preview” Plugin
for that you have to install vim-plug ->
- Download the modul
- edit ~/.vimrc
- add a plugin section
call plug#begin(’~/.vim/plugged’)
Plug ‘iamcco/markdown-preview.nvim’, { ‘do’: { -> mkdp#util#install() }, ‘for’: [‘markdown’, ‘vim-plug’]}
call plug#end()
- save and exit.
Then start a new vim file (or file with vim)
and start the install process
:PlugInstall