summaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2015-04-12 14:37:26 +0200
committerFlorian Pritz <bluewind@xinu.at>2015-04-12 14:37:26 +0200
commitb0c20072850b79c4362f8c888bf103b40ca6f9b1 (patch)
tree5ec04cbbd07fc6a5dba075712052d4be1662d257 /.vimrc
parentf3d2a3161b93d28cb5ea09224ef6c5c525ba2c2c (diff)
downloaddotfiles-b0c20072850b79c4362f8c888bf103b40ca6f9b1.tar.gz
dotfiles-b0c20072850b79c4362f8c888bf103b40ca6f9b1.tar.xz
vim: switch to vundle
neobundle doesn't work nicely if the bundle dir is not writeable. Let's see if vundle behaves better Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc33
1 files changed, 16 insertions, 17 deletions
diff --git a/.vimrc b/.vimrc
index f02d389..a9fb02f 100644
--- a/.vimrc
+++ b/.vimrc
@@ -62,11 +62,10 @@ let g:sudo_no_gui = 1
let g:ycm_extra_conf_globlist = ['~/.ycm_extra_conf.py']
filetype off
-set runtimepath+=~/.vim/bundle/neobundle.vim/
-call neobundle#rc(expand('~/.vim/bundle/'))
-NeoBundleFetch 'Shougo/neobundle.vim'
+set rtp+=~/.vim/bundle/vundle
+call vundle#begin()
-NeoBundle 'scrooloose/syntastic'
+Plugin 'scrooloose/syntastic'
"NeoBundle 'Rip-Rip/clang_complete'
"NeoBundle 'Shougo/neocomplete.vim'
"NeoBundle 'Shougo/neosnippet.vim'
@@ -83,20 +82,20 @@ NeoBundle 'scrooloose/syntastic'
"NeoBundle 'osyo-manga/vim-reunions'
"NeoBundle 'osyo-manga/vim-marching'
"
-NeoBundle 'Valloric/YouCompleteMe'
-NeoBundle 'SirVer/ultisnips'
+Plugin 'Valloric/YouCompleteMe'
+Plugin 'SirVer/ultisnips'
"
-NeoBundle 'tpope/vim-unimpaired'
-NeoBundle 'tpope/vim-fugitive'
-NeoBundle 'tpope/vim-repeat'
-NeoBundle 'SudoEdit'
-NeoBundle 'rking/ag.vim'
-NeoBundle 'scrooloose/nerdtree'
-NeoBundle 'majutsushi/tagbar'
-NeoBundle 'adoy/vim-php-refactoring-toolbox'
-NeoBundle 'shawncplus/phpcomplete.vim'
-
-NeoBundleCheck
+Plugin 'tpope/vim-unimpaired'
+Plugin 'tpope/vim-fugitive'
+Plugin 'tpope/vim-repeat'
+Plugin 'SudoEdit'
+Plugin 'rking/ag.vim'
+Plugin 'scrooloose/nerdtree'
+Plugin 'majutsushi/tagbar'
+Plugin 'adoy/vim-php-refactoring-toolbox'
+Plugin 'shawncplus/phpcomplete.vim'
+
+call vundle#end()
"aliases
cnorea w!! w !sudo tee "%" > /dev/null