Skip to content

Instantly share code, notes, and snippets.

@yyq123
Created February 16, 2019 14:15
Show Gist options
  • Select an option

  • Save yyq123/0d38004832f87498a5683b136d18f4df to your computer and use it in GitHub Desktop.

Select an option

Save yyq123/0d38004832f87498a5683b136d18f4df to your computer and use it in GitHub Desktop.
vim-plug-setup.vim
" 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