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