Vim plugins
This commit is contained in:
18
doc/vim.md
18
doc/vim.md
@@ -7,6 +7,24 @@
|
||||
* [vim-plug](https://github.com/junegunn/vim-plug)
|
||||
* [How to install vim plugins](https://opensource.com/article/20/2/how-install-vim-plugins)
|
||||
|
||||
```vim
|
||||
' part of ~/.vimrc
|
||||
|
||||
call plug#begin()
|
||||
Plug 'preservim/NERDTree'
|
||||
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
|
||||
Plug 'udalov/kotlin-vim'
|
||||
Plug 'editorconfig/editorconfig-vim'
|
||||
Plug 'scrooloose/syntastic'
|
||||
call plug#end()
|
||||
```
|
||||
|
||||
```
|
||||
:PlugInstall
|
||||
:PlugUpdate
|
||||
:PlugUpdate NERDTree
|
||||
```
|
||||
|
||||
## EditorConfig
|
||||
* [Home page](https://editorconfig.org)
|
||||
* [Readme](https://github.com/editorconfig/editorconfig-vim#readme)
|
||||
|
||||
Reference in New Issue
Block a user