Updated tips (markdown)

Junegunn Choi 2017-11-27 01:03:04 +09:00
parent 48547c0829
commit 3a1905cacc

@ -80,6 +80,14 @@ call plug#begin('~/vimfiles/bundle')
Unlike Vundle, vim-plug does not implicitly prepend `vim-scripts/` to single-segment argument. So `Plugin 'taglist.vim'` in Vundle should be explicitly written as `Plug 'vim-scripts/taglist.vim'`. However, note that vim-scripts.org is no longer maintained.
### Vim help
If you need Vim help for vim-plug (e.g. `:help plug-options`), register vim-plug as one of the plugins.
```vim
Plug 'junegunn/vim-plug'
```
### Conditional activation
Use plain "if" statement to conditionally activate plugins: