diff --git a/.gitmodules b/.gitmodules index ba1b50a..590b628 100644 --- a/.gitmodules +++ b/.gitmodules @@ -89,7 +89,7 @@ path = .vim/bundle/vim-jdaddy url = https://github.com/tpope/vim-jdaddy.git [submodule ".vim/bundle/ale"] - path = .vim/bundle_extra/ale + path = .vim/bundle/ale url = https://github.com/w0rp/ale.git [submodule ".vim/bundle/vim-rooter"] path = .vim/bundle/vim-rooter @@ -101,23 +101,26 @@ path = .vim/bundle/vim-signify url = https://github.com/mhinz/vim-signify.git [submodule ".vim/bundle/fzf"] - path = .vim/bundle_extra/fzf + path = .vim/bundle/fzf url = https://github.com/junegunn/fzf [submodule ".vim/bundle/fzf.vim"] - path = .vim/bundle_extra/fzf.vim + path = .vim/bundle/fzf.vim url = https://github.com/junegunn/fzf.vim.git [submodule ".vim/bundle_extra/deoplete.nvim"] - path = .vim/bundle_extra/deoplete.nvim + path = .vim/bundle/deoplete.nvim url = https://github.com/Shougo/deoplete.nvim.git [submodule ".vim/bundle_extra/nvim-yarp"] - path = .vim/bundle_extra/nvim-yarp + path = .vim/bundle/nvim-yarp url = https://github.com/roxma/nvim-yarp.git [submodule ".vim/bundle_extra/vim-hug-neovim-rpc"] - path = .vim/bundle_extra/vim-hug-neovim-rpc + path = .vim/bundle/vim-hug-neovim-rpc url = https://github.com/roxma/vim-hug-neovim-rpc [submodule ".vim/bundle_extra/deoplete-go"] - path = .vim/bundle_extra/deoplete-go + path = .vim/bundle/deoplete-go url = https://github.com/deoplete-plugins/deoplete-go.git [submodule ".vim/bundle_extra/deoplete-clangx"] - path = .vim/bundle_extra/deoplete-clangx + path = .vim/bundle/deoplete-clangx url = https://github.com/Shougo/deoplete-clangx.git +[submodule ".vim/bundle/deoplete-jedi"] + path = .vim/bundle/deoplete-jedi + url = https://github.com/deoplete-plugins/deoplete-jedi.git diff --git a/.vim/bundle_extra/ale b/.vim/bundle/ale similarity index 100% rename from .vim/bundle_extra/ale rename to .vim/bundle/ale diff --git a/.vim/bundle_extra/deoplete-clangx b/.vim/bundle/deoplete-clangx similarity index 100% rename from .vim/bundle_extra/deoplete-clangx rename to .vim/bundle/deoplete-clangx diff --git a/.vim/bundle_extra/deoplete-go b/.vim/bundle/deoplete-go similarity index 100% rename from .vim/bundle_extra/deoplete-go rename to .vim/bundle/deoplete-go diff --git a/.vim/bundle/deoplete-jedi b/.vim/bundle/deoplete-jedi new file mode 160000 index 0000000..f89669d --- /dev/null +++ b/.vim/bundle/deoplete-jedi @@ -0,0 +1 @@ +Subproject commit f89669d2b089d75f1eccbf8d14277b74857a850d diff --git a/.vim/bundle_extra/deoplete.nvim b/.vim/bundle/deoplete.nvim similarity index 100% rename from .vim/bundle_extra/deoplete.nvim rename to .vim/bundle/deoplete.nvim diff --git a/.vim/bundle_extra/fzf b/.vim/bundle/fzf similarity index 100% rename from .vim/bundle_extra/fzf rename to .vim/bundle/fzf diff --git a/.vim/bundle_extra/fzf.vim b/.vim/bundle/fzf.vim similarity index 100% rename from .vim/bundle_extra/fzf.vim rename to .vim/bundle/fzf.vim diff --git a/.vim/bundle_extra/nvim-yarp b/.vim/bundle/nvim-yarp similarity index 100% rename from .vim/bundle_extra/nvim-yarp rename to .vim/bundle/nvim-yarp diff --git a/.vim/bundle_extra/vim-hug-neovim-rpc b/.vim/bundle/vim-hug-neovim-rpc similarity index 100% rename from .vim/bundle_extra/vim-hug-neovim-rpc rename to .vim/bundle/vim-hug-neovim-rpc diff --git a/.vim/plugins.vim b/.vim/plugins.vim index 460772f..48814b3 100644 --- a/.vim/plugins.vim +++ b/.vim/plugins.vim @@ -1,10 +1,6 @@ " vim-pathogen runtime bundle/vim-pathogen/autoload/pathogen.vim -if has('unix') - execute pathogen#infect('bundle/{}', 'bundle_extra/{}') -else - execute pathogen#infect('bundle/{}') -endif +execute pathogen#infect('bundle/{}') " ale let g:ale_lint_on_text_changed = 'never'