diff --git a/.gitmodules b/.gitmodules index 3126ea6..841e98e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -21,7 +21,7 @@ url = git@github.com:altercation/vim-colors-solarized.git [submodule ".vim/bundle/vim-ispc"] path = .vim/bundle/vim-ispc - url = https://github.com/jez/vim-ispc + url = git@github.com:jez/vim-ispc [submodule ".vim/bundle/vim-easytags"] path = .vim/bundle/vim-easytags url = git@github.com:xolox/vim-easytags.git @@ -37,3 +37,12 @@ [submodule ".vim/bundle/vim-airline-themes"] path = .vim/bundle/vim-airline-themes url = git@github.com:vim-airline/vim-airline-themes.git +[submodule ".vim/bundle/vimproc.vim"] + path = .vim/bundle/vimproc.vim + url = git@github.com:Shougo/vimproc.vim.git +[submodule ".vim/bundle/typescript-vim"] + path = .vim/bundle/typescript-vim + url = git@github.com:leafgarland/typescript-vim.git +[submodule ".vim/bundle/tsuquyomi"] + path = .vim/bundle/tsuquyomi + url = git@github.com:Quramy/tsuquyomi.git diff --git a/.vim/bundle/tsuquyomi b/.vim/bundle/tsuquyomi new file mode 160000 index 0000000..8ed736b --- /dev/null +++ b/.vim/bundle/tsuquyomi @@ -0,0 +1 @@ +Subproject commit 8ed736b7f9ff63ec523b60455233f8e0e122dc0a diff --git a/.vim/bundle/typescript-vim b/.vim/bundle/typescript-vim new file mode 160000 index 0000000..7843f89 --- /dev/null +++ b/.vim/bundle/typescript-vim @@ -0,0 +1 @@ +Subproject commit 7843f8978248c5feb0b2845e606f76aeafee2e9e diff --git a/.vim/bundle/vimproc.vim b/.vim/bundle/vimproc.vim new file mode 160000 index 0000000..03a38f2 --- /dev/null +++ b/.vim/bundle/vimproc.vim @@ -0,0 +1 @@ +Subproject commit 03a38f283ca9e15784e8fea84e8afc5d633b9639 diff --git a/install.sh b/install.sh index 90f5d20..c4b174f 100755 --- a/install.sh +++ b/install.sh @@ -3,4 +3,6 @@ git submodule init; git submodule sync; git submodule update; +cd .vim/bundle/vimproc.vim && make && cd ../../.. + rsync --exclude ".git/" --exclude ".git*" --exclude "install.sh" --exclude "py3status" --exclude "bin/" -avhE --no-perms . ~;