Skip to content

Instantly share code, notes, and snippets.

@phra
Created November 3, 2016 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phra/eabae92cd1257351792332d38502cfa6 to your computer and use it in GitHub Desktop.
Save phra/eabae92cd1257351792332d38502cfa6 to your computer and use it in GitHub Desktop.
Vi iMproved config
call plug#begin('~/.vim/plugged')
" Make sure you use single quotes
" " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
Plug 'junegunn/vim-easy-align'
" Any valid git URL is allowed
Plug 'https://github.com/junegunn/vim-github-dashboard.git'
"
" Group dependencies, vim-snippets depends on ultisnips
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'
" On-demand loading
Plug 'scrooloose/nerdtree'
" Using a non-master branch
Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' }
Plug 'tpope/vim-fugitive'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'terryma/vim-multiple-cursors'
" Add plugins to &runtimepath
call plug#end()
set laststatus=2
let g:airline_powerline_fonts = 1
set t_Co=256
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment