1
0
Fork 0
mirror of https://github.com/hcartiaux/dotfiles.git synced 2024-10-18 09:15:24 +02:00

[vim,install.sh] Remove vundle

This commit is contained in:
Hyacinthe Cartiaux 2015-03-06 15:32:28 +01:00
parent fba267a253
commit fcaafe234c
2 changed files with 2 additions and 29 deletions

View file

@ -40,13 +40,11 @@ if [[ ! -f ~/.git-prompt.sh ]] ; then
https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh
fi
## vim (don't forget :BundleInstall & :BundleInstall!)
## vim
mkdir -p ~/.vim
cd ~/.vim
mkdir -p backup undo swap spell bundle
[[ ! -d bundle/vundle ]] && git clone https://github.com/gmarik/vundle.git bundle/vundle
[[ -d bundle/vundle ]] && ( cd bundle/vundle ; git pull )
mkdir -p backup undo swap spell
ln -sf $DOTFILES/vim/vimrc ~/.vimrc
[[ ! -h ~/.vim/header ]] && ln -sf $DOTFILES/vim/header ~/.vim/header

View file

@ -22,31 +22,6 @@
set nocompatible
""""""""""""
" => Vundle
""""""""""""
" set rtp+=~/.vim/bundle/vundle/
" call vundle#rc()
" Git syntax highlighting and integration
" Bundle 'tpope/vim-git'
" Bundle 'tpope/vim-fugitive'
" Bundle 'gregsexton/gitv'
" syntax highlighting
" Bundle 'tpope/vim-markdown'
" Bundle 'vim-ruby/vim-ruby'
" Surround selection with quotes, parenthesis…
" Bundle 'tpope/vim-surround'
" Automatically closes functions, blocks, etc.
" Bundle 'tpope/vim-endwise'
" A better stats bar
" Bundle 'Lokaltog/vim-powerline'
" Aligns text.
" Bundle 'godlygeek/tabular'
" Browse tags of source code files.
" Bundle 'majutsushi/tagbar'
""""""""""""
" => General
""""""""""""