From e398816da47aa706b2bf05b8a663a637d5b6f39c Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Mon, 17 Aug 2015 11:57:49 -0600 Subject: Changing to different plugin system --- bundle/Vundle.vim/test/files/test.erl | 20 --------- bundle/Vundle.vim/test/minirc.vim | 9 ---- bundle/Vundle.vim/test/vimrc | 81 ----------------------------------- 3 files changed, 110 deletions(-) delete mode 100644 bundle/Vundle.vim/test/files/test.erl delete mode 100644 bundle/Vundle.vim/test/minirc.vim delete mode 100644 bundle/Vundle.vim/test/vimrc (limited to 'bundle/Vundle.vim/test') diff --git a/bundle/Vundle.vim/test/files/test.erl b/bundle/Vundle.vim/test/files/test.erl deleted file mode 100644 index 1672953..0000000 --- a/bundle/Vundle.vim/test/files/test.erl +++ /dev/null @@ -1,20 +0,0 @@ --module(mmc_logmon_sup). --behaviour(supervisor). --export([init/1]). - -init(_) -> - {ok, { - {one_for_one, 5, 1}, - [ - {listener, - {aaa, start_link, []}, - permanent, 100, worker, - [aaa] - }, - {server, - {bbb, start_link, []}, - permanent, 100, worker, - [bbb] - } - ] - }}. diff --git a/bundle/Vundle.vim/test/minirc.vim b/bundle/Vundle.vim/test/minirc.vim deleted file mode 100644 index 7b48d13..0000000 --- a/bundle/Vundle.vim/test/minirc.vim +++ /dev/null @@ -1,9 +0,0 @@ -set nocompatible -syntax on -filetype off -set rtp+=~/.vim/bundle/Vundle.vim/ -call vundle#begin() -Plugin 'gmarik/Vundle.vim' -call vundle#end() -filetype plugin indent on - diff --git a/bundle/Vundle.vim/test/vimrc b/bundle/Vundle.vim/test/vimrc deleted file mode 100644 index d8455a7..0000000 --- a/bundle/Vundle.vim/test/vimrc +++ /dev/null @@ -1,81 +0,0 @@ -" 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: -- cgit v1.2.3