VimPlugin: vim-plug: Difference between revisions

From wikinotes
No edit summary
 
Line 16: Line 16:


Plug 'https://github.com/vim-scripts/DrawIt'
Plug 'https://github.com/vim-scripts/DrawIt'
Plug 'https://github.com/Konfekt/FastFold'
Plug 'ssh://domain.com:/git/foo-plugin'
Plug 'https://github.com/preservim/nerdtree'
Plug 'https://domain.com/project', {'branch': 'custom-branch', 'do': ':SomeVimCommand'}
Plug 'https://github.com/yssl/QFEnter'
Plug '~/my-prototype-plugin'
Plug '~/my-prototype-plugin'



Revision as of 14:15, 22 October 2022

Asynchronous vim plugin manager.

Documentation

github https://github.com/junegunn/vim-plug

Configuration

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

Plug 'https://github.com/vim-scripts/DrawIt'
Plug 'ssh://domain.com:/git/foo-plugin'
Plug 'https://domain.com/project', {'branch': 'custom-branch', 'do': ':SomeVimCommand'}
Plug '~/my-prototype-plugin'

call plug#end()

Usage

:PlugInstall  " install plugins
:PlugUpdate   " update plugins