diff options
| author | Miquel Sabaté <mikisabate@gmail.com> | 2014-11-14 18:31:09 +0100 |
|---|---|---|
| committer | Miquel Sabaté <mikisabate@gmail.com> | 2014-11-14 18:31:09 +0100 |
| commit | d947e6d70271873d37bab37e357505c5b0d01bf3 (patch) | |
| tree | 559e97d3e6153fbb65aa58757271f268eef92f8b | |
| parent | 098a2e22ac98b01b1cc0a2b64e0c81718743055e (diff) | |
| download | dotfiles-d947e6d70271873d37bab37e357505c5b0d01bf3.tar.gz dotfiles-d947e6d70271873d37bab37e357505c5b0d01bf3.zip | |
vim: updated vundle -> Vundle.vim.
| -rw-r--r-- | .gitmodules | 6 | ||||
| -rwxr-xr-x | install.sh | 10 | ||||
| m--------- | vim/bundle/Vundle.vim | 0 | ||||
| m--------- | vim/bundle/vundle | 0 | ||||
| -rw-r--r-- | vim/bundles.vim | 17 |
5 files changed, 14 insertions, 19 deletions
diff --git a/.gitmodules b/.gitmodules index 8e7bc95..aec4ca9 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "vim/bundle/vundle"] - path = vim/bundle/vundle - url = https://github.com/gmarik/vundle.git +[submodule "vim/bundle/Vundle.vim"] + path = vim/bundle/Vundle.vim + url = https://github.com/gmarik/Vundle.vim.git @@ -30,15 +30,7 @@ rm -rf $HOME/.vim rm -rf $HOME/.vimrc cp -rf vim $HOME/.vim cp vimrc $HOME/.vimrc -cat <<HERE - -You have successfully installed my vim configuration files. However, you have -to type the following command inside vim to install all the plugins that I'm -using: - - :BundleInstall - -HERE +vim +PluginInstall +qall # Download and install the g utility cd /tmp diff --git a/vim/bundle/Vundle.vim b/vim/bundle/Vundle.vim new file mode 160000 +Subproject 0b28e334e65b6628b0a61c412fcb45204a2f2ba diff --git a/vim/bundle/vundle b/vim/bundle/vundle deleted file mode 160000 -Subproject f31aa52552ceb40240e56e475e6df89cc756507 diff --git a/vim/bundles.vim b/vim/bundles.vim index 5e60959..2affba0 100644 --- a/vim/bundles.vim +++ b/vim/bundles.vim @@ -1,14 +1,17 @@ " Vundle setup -set rtp+=~/.vim/bundle/vundle/ -call vundle#rc() -Bundle 'gmarik/vundle' +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() + +Plugin 'gmarik/Vundle.vim' " My list of plugins. -Bundle 'tpope/vim-surround.git' -Bundle 'kien/ctrlp.vim.git' -Bundle 'derekwyatt/vim-scala.git' -Bundle 'fatih/vim-go' +Plugin 'tpope/vim-surround.git' +Plugin 'kien/ctrlp.vim.git' +Plugin 'derekwyatt/vim-scala.git' +Plugin 'fatih/vim-go' + +call vundle#end() "" " Some small adjustments for the installed plugins. |
