Add new stuff
This commit is contained in:
parent
69661de82f
commit
07744f6823
333 changed files with 1989 additions and 6 deletions
18
vim-plugins/vim-plugins-profile-master/.travis/vimrc
Normal file
18
vim-plugins/vim-plugins-profile-master/.travis/vimrc
Normal 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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue