Created
February 16, 2019 14:15
-
-
Save yyq123/0d38004832f87498a5683b136d18f4df to your computer and use it in GitHub Desktop.
vim-plug-setup.vim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " plug-vim | |
| """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " Specify a directory for plugins | |
| call plug#begin('~/.vim/plugged') | |
| " Make sure you use single quotes | |
| " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'lilydjwg/colorizer' | |
| Plug 'kshenoy/vim-signature' | |
| "Plug 'mattn/gist-vim' | |
| " Any valid git URL is allowed | |
| "Plug 'https://github.com/junegunn/vim-github-dashboard.git' | |
| " Multiple Plug commands can be written in a single line using | separators | |
| "Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' | |
| " On-demand loading | |
| "Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment