formatting
This commit is contained in:
parent
ffaecaa36b
commit
e6a2519a82
|
@ -3,94 +3,123 @@ set runtimepath+=~/.vim/bundle/Vundle.vim
|
|||
call vundle#begin()
|
||||
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
"
|
||||
"css3-syntax
|
||||
Plugin 'hail2u/vim-css3-syntax.git'
|
||||
"
|
||||
"scss-syntax
|
||||
Plugin 'cakebaker/scss-syntax.vim'
|
||||
"
|
||||
"bufexplorer
|
||||
Plugin 'jlanzarotta/bufexplorer'
|
||||
"
|
||||
"tagbar
|
||||
Plugin 'majutsushi/tagbar'
|
||||
"
|
||||
"vim-surround
|
||||
Plugin 'tpope/vim-surround'
|
||||
"
|
||||
"undotree
|
||||
Plugin 'mbbill/undotree'
|
||||
"
|
||||
" Ctrlp
|
||||
Plugin 'ctrlpvim/ctrlp.vim'
|
||||
"
|
||||
" Obsession
|
||||
Plugin 'tpope/vim-obsession'
|
||||
"
|
||||
" vim-css-color
|
||||
" Plugin 'ap/vim-css-color'
|
||||
" vim-javascript
|
||||
Plugin 'pangloss/vim-javascript'
|
||||
"
|
||||
" ultisnips
|
||||
" https://github.com/sirver/UltiSnips
|
||||
Plugin 'SirVer/ultisnips'
|
||||
" and some snippets
|
||||
" https://github.com/honza/vim-snippets
|
||||
Plugin 'honza/vim-snippets'
|
||||
"
|
||||
" ALE
|
||||
" https://github.com/w0rp/ale
|
||||
Plugin 'w0rp/ale'
|
||||
"
|
||||
" MatchTag
|
||||
" https://github.com/gregsexton/MatchTag
|
||||
Plugin 'gregsexton/MatchTag'
|
||||
"
|
||||
" phpcomplete.vim
|
||||
" https://github.com/shawncplus/phpcomplete.vim
|
||||
Plugin 'shawncplus/phpcomplete.vim'
|
||||
" https://github.com/dsawardekar/wordpress.vim
|
||||
" For up to date Wordpress Files see:
|
||||
" https://github.com/joseluis/wordpress.vim-generator
|
||||
"
|
||||
"Plugin 'dsawardekar/wordpress.vim'
|
||||
" disabled - doesn't support universal ctags?
|
||||
" vim-vue
|
||||
" https://github.com/posva/vim-vue
|
||||
Plugin 'posva/vim-vue'
|
||||
"
|
||||
" vim-commentary
|
||||
" https://github.com/tpope/vim-commentary
|
||||
Plugin 'tpope/vim-commentary'
|
||||
"
|
||||
" vim-repeat
|
||||
" https://github.com/tpope/vim-repeat
|
||||
Plugin 'tpope/vim-repeat'
|
||||
"
|
||||
" taboo.vim
|
||||
" https://github.com/gcmt/taboo.vim
|
||||
Plugin 'gcmt/taboo.vim'
|
||||
"
|
||||
" https://github.com/mattn/emmet-vim
|
||||
Plugin 'mattn/emmet-vim'
|
||||
"
|
||||
" vimwiki
|
||||
" https://github.com/vimwiki/vimwiki
|
||||
Plugin 'vimwiki/vimwiki'
|
||||
"
|
||||
" youcompleteme
|
||||
" https://github.com/Valloric/YouCompleteMe
|
||||
Plugin 'Valloric/YouCompleteMe'
|
||||
"
|
||||
" gitgutter
|
||||
" https://github.com/airblade/vim-gitgutter/blob/master/README.mkd
|
||||
Plugin 'airblade/vim-gitgutter'
|
||||
"
|
||||
" vim-peekaboo
|
||||
" https://github.com/junegunn/vim-peekaboo
|
||||
Plugin 'junegunn/vim-peekaboo'
|
||||
"
|
||||
" vim-gutentags
|
||||
" https://github.com/ludovicchabant/vim-gutentags
|
||||
Plugin 'ludovicchabant/vim-gutentags'
|
||||
"
|
||||
" vim-qlist
|
||||
" https://github.com/romainl/vim-qlist/
|
||||
" Plugin 'romainl/vim-qlist'
|
||||
" PLugin takac/vim-hardtime
|
||||
" https://bluz71.github.io/2017/05/15/vim-tips-tricks.html
|
||||
Plugin 'takac/vim-hardtime'
|
||||
|
||||
" fugitive-vim
|
||||
" https://github.com/tpope/vim-fugitive/blob/master/README.markdown
|
||||
Plugin 'tpope/vim-fugitive'
|
||||
|
||||
" vim-dispatch
|
||||
" https://github.com/tpope/vim-dispatch
|
||||
Plugin 'tpope/vim-dispatch'
|
||||
|
||||
" colorV
|
||||
" https://github.com/gu-fan/colorv.vim
|
||||
Plugin 'gu-fan/colorv.vim'
|
||||
|
||||
" vim switch
|
||||
"https://github.com/AndrewRadev/switch.vim
|
||||
Plugin 'AndrewRadev/switch.vim'
|
||||
|
||||
|
||||
" All of your Plugins must be added before the following line
|
||||
call vundle#end() " required
|
||||
filetype plugin indent on " required
|
||||
|
|
Loading…
Reference in New Issue