fixed test/vimrc
This commit is contained in:
parent
02e2fe0aa2
commit
215dd5f842
15
test/vimrc
15
test/vimrc
@ -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'
|
||||||
|
Loading…
Reference in New Issue
Block a user