fixed test/vimrc

This commit is contained in:
gmarik 2014-02-21 20:51:33 -06:00
parent 02e2fe0aa2
commit 215dd5f842

View File

@ -3,17 +3,14 @@ set nocompatible
set nowrap set nowrap
let root = '/tmp/!vundle-test/bundles/' let bundle_dir = '/tmp/vundle-test/bundles/'
" let src = 'http://github.com/gmarik/vundle.git' " let src = 'http://github.com/gmarik/vundle.git'
" let src = '~/.vim/bundle/vundle/.git'
" Vundle Options " Vundle Options
" let g:vundle_default_git_proto = 'git' " let g:vundle_default_git_proto = 'git'
" if !isdirectory(expand(root, 1).'/vundle') silent execute '!mkdir -p '.bundle_dir
" exec '!git clone '.src.' '.shellescape(root, 1).'/vundle' silent execute '!ln -f -s ~/.vim/bundle/vundle '.bundle_dir
" endif
filetype off filetype off
syntax on syntax on
@ -21,9 +18,9 @@ syntax on
runtime macros/matchit.vim runtime macros/matchit.vim
" This test should be executed in "test" directory " This test should be executed in "test" directory
set rtp+=.. exec 'set rtp^='.bundle_dir.'vundle/'
call vundle#rc(root) call vundle#rc(bundle_dir)
" vim-scripts name " vim-scripts name
Bundle 'molokai' Bundle 'molokai'
@ -37,7 +34,7 @@ Bundle 'altercation/vim-colors-solarized'
Bundle 'nelstrom/vim-mac-classic-theme.git' Bundle 'nelstrom/vim-mac-classic-theme.git'
" "
" invalid uri " invalid uri
Bundle 'nonexistinguser/yupppierepo.git' "Bundle 'nonexistinguser/yupppierepo.git'
" full uri " full uri
Bundle 'https://github.com/vim-scripts/vim-game-of-life' Bundle 'https://github.com/vim-scripts/vim-game-of-life'
@ -62,12 +59,12 @@ Bundle 'jimenezrick/vimerl'
filetype plugin indent on " Automatically detect file types. filetype plugin indent on " Automatically detect file types.
set wildignore+=doc " should not break helptags set wildignore+=doc " should not break helptags
set wildignore+=.git " should not break clone set wildignore+=.git " should not break clone
set wildignore+=.git/* " should not break clone set wildignore+=.git/* " should not break clone
set wildignore+=*/.git/* set wildignore+=*/.git/*
" TODO: helptags fails with this " TODO: helptags fails with this
" set wildignore+=doc/* " should not break clone " set wildignore+=doc/* " should not break clone
" set wildignore+=*/doc/* " set wildignore+=*/doc/*
au VimEnter * BundleInstall au VimEnter * BundleInstall