split bundle into bundle and bundle_extra
This commit is contained in:
parent
5b4a4f3572
commit
bf20bf5874
10
.gitmodules
vendored
10
.gitmodules
vendored
@ -86,16 +86,16 @@
|
|||||||
path = .vim/bundle/vim-indent-guides
|
path = .vim/bundle/vim-indent-guides
|
||||||
url = https://github.com/nathanaelkane/vim-indent-guides.git
|
url = https://github.com/nathanaelkane/vim-indent-guides.git
|
||||||
[submodule ".vim/bundle/YouCompleteMe"]
|
[submodule ".vim/bundle/YouCompleteMe"]
|
||||||
path = .vim/bundle/YouCompleteMe
|
path = .vim/bundle_extra/YouCompleteMe
|
||||||
url = https://github.com/Valloric/YouCompleteMe.git
|
url = https://github.com/Valloric/YouCompleteMe.git
|
||||||
[submodule ".vim/bundle/tern_for_vim"]
|
[submodule ".vim/bundle/tern_for_vim"]
|
||||||
path = .vim/bundle/tern_for_vim
|
path = .vim/bundle_extra/tern_for_vim
|
||||||
url = https://github.com/marijnh/tern_for_vim
|
url = https://github.com/marijnh/tern_for_vim
|
||||||
[submodule ".vim/bundle/vim-jdaddy"]
|
[submodule ".vim/bundle/vim-jdaddy"]
|
||||||
path = .vim/bundle/vim-jdaddy
|
path = .vim/bundle/vim-jdaddy
|
||||||
url = https://github.com/tpope/vim-jdaddy.git
|
url = https://github.com/tpope/vim-jdaddy.git
|
||||||
[submodule ".vim/bundle/ale"]
|
[submodule ".vim/bundle/ale"]
|
||||||
path = .vim/bundle/ale
|
path = .vim/bundle_extra/ale
|
||||||
url = https://github.com/w0rp/ale.git
|
url = https://github.com/w0rp/ale.git
|
||||||
[submodule ".vim/bundle/vim-rooter"]
|
[submodule ".vim/bundle/vim-rooter"]
|
||||||
path = .vim/bundle/vim-rooter
|
path = .vim/bundle/vim-rooter
|
||||||
@ -107,8 +107,8 @@
|
|||||||
path = .vim/bundle/vim-signify
|
path = .vim/bundle/vim-signify
|
||||||
url = https://github.com/mhinz/vim-signify.git
|
url = https://github.com/mhinz/vim-signify.git
|
||||||
[submodule ".vim/bundle/fzf"]
|
[submodule ".vim/bundle/fzf"]
|
||||||
path = .vim/bundle/fzf
|
path = .vim/bundle_extra/fzf
|
||||||
url = https://github.com/junegunn/fzf
|
url = https://github.com/junegunn/fzf
|
||||||
[submodule ".vim/bundle/fzf.vim"]
|
[submodule ".vim/bundle/fzf.vim"]
|
||||||
path = .vim/bundle/fzf.vim
|
path = .vim/bundle_extra/fzf.vim
|
||||||
url = https://github.com/junegunn/fzf.vim.git
|
url = https://github.com/junegunn/fzf.vim.git
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
" vim-pathogen
|
" vim-pathogen
|
||||||
runtime bundle/vim-pathogen/autoload/pathogen.vim
|
runtime bundle/vim-pathogen/autoload/pathogen.vim
|
||||||
execute pathogen#infect()
|
if has('unix')
|
||||||
|
execute pathogen#infect('bundle/{}', 'bundle_extra/{}')
|
||||||
|
else
|
||||||
|
execute pathogen#infect('bundle/{}')
|
||||||
|
endif
|
||||||
|
|
||||||
" ale
|
" ale
|
||||||
let g:ale_lint_on_text_changed = 'never'
|
let g:ale_lint_on_text_changed = 'never'
|
||||||
|
Loading…
Reference in New Issue
Block a user