Add new stuff

This commit is contained in:
ViktorBarzin 2018-02-14 00:00:02 +00:00
parent 69661de82f
commit 07744f6823
333 changed files with 1989 additions and 6 deletions

View file

@ -0,0 +1,18 @@
set nocompatible
call plug#begin('~/.vim/plugged')
" Add a bunch of random plugins
Plug 'tpope/vim-surround'
Plug 'tomtom/tcomment_vim'
Plug 'tpope/vim-fugitive'
Plug 'octol/vim-cpp-enhanced-highlight'
Plug 'ervandew/supertab'
Plug 'jiangmiao/auto-pairs'
" UltiSnips requires Vim >= 7.4
if v:version > 703
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'
endif
call plug#end()