* Add modelines to all code/doc files excluding README.md. The modeline used is: `" vim: set expandtab sts=2 ts=2 sw=2 tw=78 norl:` * Rename links with /vundle to /Vundle.vim, seems to confuse some people with redirect. * Remove duplicates from Quickstart, add example of `name` flag. * Add link to Tips page by @Lucc . * Change help maintain vundle link directly to the new one. * README.md line number links updated. Note: Users with bundle/vundle need to rename vundle to Vundle.vim to use test files. Vundle will continue to function otherwise. Fixes #413. Fixes #438.
		
			
				
	
	
		
			82 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			VimL
		
	
	
	
	
	
| " vim -u test/vimrc
 | |
| set nocompatible
 | |
| 
 | |
| set nowrap
 | |
| 
 | |
| let bundle_dir = '/tmp/vundle-test/bundles/'
 | |
| " let src = 'http://github.com/gmarik/vundle.git'
 | |
| 
 | |
| " Vundle Options
 | |
| " let g:vundle_default_git_proto = 'git'
 | |
| 
 | |
| silent execute '!mkdir -p '.bundle_dir
 | |
| silent execute '!ln -f -s ~/.vim/bundle/Vundle.vim '.bundle_dir
 | |
| 
 | |
| filetype off
 | |
| syntax on
 | |
| 
 | |
| runtime macros/matchit.vim
 | |
| 
 | |
| " This test should be executed in "test" directory
 | |
| exec 'set rtp^='.bundle_dir.'Vundle.vim/'
 | |
| 
 | |
| call vundle#rc(bundle_dir)
 | |
| 
 | |
| 
 | |
| Plugin 'molokai' " vim-scripts name
 | |
| 
 | |
| " github username with dashes
 | |
| Bundle 'vim-scripts/ragtag.vim'
 | |
| 
 | |
| " original repo
 | |
| Bundle 'altercation/vim-colors-solarized'
 | |
| " with extension
 | |
| Bundle 'nelstrom/vim-mac-classic-theme.git'
 | |
| "
 | |
| "  invalid uri
 | |
| "Bundle 'nonexistinguser/yupppierepo.git'
 | |
| 
 | |
| " full uri
 | |
| Bundle 'https://github.com/vim-scripts/vim-game-of-life'
 | |
| " full uri
 | |
| Bundle 'git@github.com:gmarik/ingretu.git'
 | |
| " short uri
 | |
| Bundle 'gh:gmarik/snipmate.vim.git'
 | |
| Bundle 'github:mattn/gist-vim.git'
 | |
| 
 | |
| " local uri stuff
 | |
| Bundle '~/Dropbox/.gitrepos/utilz.vim.git'
 | |
| " Bundle 'file://Dropbox/.gitrepos/utilz.vim.git'
 | |
| 
 | |
| " with options
 | |
| Bundle 'rstacruz/sparkup.git', {'rtp': 'vim/'}
 | |
| Bundle 'matchit.zip', {'name': 'matchit'}
 | |
| 
 | |
| " Camel case
 | |
| Bundle 'vim-scripts/RubySinatra'
 | |
| 
 | |
| " syntax issue #203
 | |
| Bundle 'jimenezrick/vimerl'
 | |
| 
 | |
| " Static bundle: Same name as a valid vim-scripts bundle
 | |
| Bundle 'latte', {'pinned' : 1}
 | |
| if !isdirectory(expand(bundle_dir) . '/latte')
 | |
|   call mkdir(expand(bundle_dir) . '/latte', 'p')
 | |
| endif
 | |
| 
 | |
| 
 | |
| filetype plugin indent on      " Automatically detect file types.
 | |
| 
 | |
| set wildignore+=doc            " should not break helptags
 | |
| set wildignore+=.git           " should not break clone
 | |
| set wildignore+=.git/*         " should not break clone
 | |
| set wildignore+=*/.git/*
 | |
| " TODO: helptags fails with this
 | |
| " set wildignore+=doc/*        " should not break clone
 | |
| " set wildignore+=*/doc/*
 | |
| 
 | |
| au VimEnter * BundleInstall
 | |
| 
 | |
| " e test/files/erlang.erl
 | |
| " vim: set expandtab sts=2 ts=2 sw=2 tw=78:
 |