├── .gitignore ├── README.md ├── autoload └── pathogen.vim ├── bundle ├── ack.vim │ ├── doc │ │ ├── ack.txt │ │ └── tags │ └── plugin │ │ └── ack.vim ├── ctrlp.vim │ ├── .gitignore │ ├── autoload │ │ ├── ctrlp.vim │ │ └── ctrlp │ │ │ ├── bookmarkdir.vim │ │ │ ├── buffertag.vim │ │ │ ├── changes.vim │ │ │ ├── dir.vim │ │ │ ├── line.vim │ │ │ ├── mixed.vim │ │ │ ├── mrufiles.vim │ │ │ ├── quickfix.vim │ │ │ ├── rtscript.vim │ │ │ ├── tag.vim │ │ │ ├── undo.vim │ │ │ └── utils.vim │ ├── doc │ │ └── ctrlp.txt │ ├── plugin │ │ └── ctrlp.vim │ └── readme.md ├── delimitMate │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── autoload │ │ ├── delimitMate.vim │ │ └── delimitMateTests.vim │ ├── doc │ │ └── delimitMate.txt │ ├── plugin │ │ └── delimitMate.vim │ └── test │ │ ├── README │ │ ├── _setup.vim │ │ ├── autoclose_matchpairs.txt │ │ ├── autoclose_matchpairs.vim │ │ ├── autoclose_quotes.txt │ │ ├── autoclose_quotes.vim │ │ ├── expand_cr.txt │ │ ├── expand_cr.vim │ │ ├── expand_space.txt │ │ └── expand_space.vim ├── gnupg │ └── plugin │ │ └── gnupg.vim ├── matchit │ ├── doc │ │ └── matchit.txt │ └── plugin │ │ └── matchit.vim ├── snipmate │ ├── README │ ├── after │ │ └── plugin │ │ │ └── snipMate.vim │ ├── autoload │ │ └── snipMate.vim │ ├── doc │ │ ├── snipMate.txt │ │ └── tags │ ├── ftplugin │ │ └── html_snip_helper.vim │ ├── plugin │ │ └── snipMate.vim │ ├── snippets │ │ ├── _.snippets │ │ ├── autoit.snippets │ │ ├── c.snippets │ │ ├── cpp.snippets │ │ ├── css.snippets │ │ ├── eruby.snippets │ │ ├── html.snippets │ │ ├── java.snippets │ │ ├── javascript.snippets │ │ ├── mako.snippets │ │ ├── objc.snippets │ │ ├── perl.snippets │ │ ├── php.snippets │ │ ├── python.snippets │ │ ├── ruby.snippets │ │ ├── scss.snippets │ │ ├── sh.snippets │ │ ├── snippet.snippets │ │ ├── tcl.snippets │ │ ├── tex.snippets │ │ ├── vim.snippets │ │ └── zsh.snippets │ └── syntax │ │ └── snippet.vim ├── surround.vim │ ├── doc │ │ ├── surround.txt │ │ └── tags │ └── plugin │ │ └── surround.vim ├── tComment │ ├── README │ ├── autoload │ │ └── tcomment.vim │ ├── doc │ │ └── tcomment.txt │ └── plugin │ │ └── tcomment.vim ├── vim-auto-save │ ├── README │ ├── README.md │ ├── doc │ │ └── LICENSE.txt │ └── plugin │ │ └── AutoSave.vim └── vim-rails │ ├── .gitignore │ ├── CONTRIBUTING.markdown │ ├── README.markdown │ ├── autoload │ └── rails.vim │ ├── doc │ └── rails.txt │ └── plugin │ └── rails.vim └── vimrc /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | *.netrwhist 3 | *.zip 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/README.md -------------------------------------------------------------------------------- /autoload/pathogen.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/autoload/pathogen.vim -------------------------------------------------------------------------------- /bundle/ack.vim/doc/ack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ack.vim/doc/ack.txt -------------------------------------------------------------------------------- /bundle/ack.vim/doc/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ack.vim/doc/tags -------------------------------------------------------------------------------- /bundle/ack.vim/plugin/ack.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ack.vim/plugin/ack.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/.gitignore: -------------------------------------------------------------------------------- 1 | *.markdown 2 | *.zip 3 | note.txt 4 | tags 5 | .hg* 6 | tmp/* 7 | -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/bookmarkdir.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/bookmarkdir.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/buffertag.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/buffertag.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/changes.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/changes.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/dir.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/dir.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/line.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/line.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/mixed.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/mixed.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/mrufiles.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/mrufiles.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/quickfix.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/quickfix.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/rtscript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/rtscript.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/tag.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/tag.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/undo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/undo.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/autoload/ctrlp/utils.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/autoload/ctrlp/utils.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/doc/ctrlp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/doc/ctrlp.txt -------------------------------------------------------------------------------- /bundle/ctrlp.vim/plugin/ctrlp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/plugin/ctrlp.vim -------------------------------------------------------------------------------- /bundle/ctrlp.vim/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/ctrlp.vim/readme.md -------------------------------------------------------------------------------- /bundle/delimitMate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/.gitignore -------------------------------------------------------------------------------- /bundle/delimitMate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/Makefile -------------------------------------------------------------------------------- /bundle/delimitMate/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/README -------------------------------------------------------------------------------- /bundle/delimitMate/autoload/delimitMate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/autoload/delimitMate.vim -------------------------------------------------------------------------------- /bundle/delimitMate/autoload/delimitMateTests.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/autoload/delimitMateTests.vim -------------------------------------------------------------------------------- /bundle/delimitMate/doc/delimitMate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/doc/delimitMate.txt -------------------------------------------------------------------------------- /bundle/delimitMate/plugin/delimitMate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/plugin/delimitMate.vim -------------------------------------------------------------------------------- /bundle/delimitMate/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/test/README -------------------------------------------------------------------------------- /bundle/delimitMate/test/_setup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/test/_setup.vim -------------------------------------------------------------------------------- /bundle/delimitMate/test/autoclose_matchpairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/test/autoclose_matchpairs.txt -------------------------------------------------------------------------------- /bundle/delimitMate/test/autoclose_matchpairs.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/test/autoclose_matchpairs.vim -------------------------------------------------------------------------------- /bundle/delimitMate/test/autoclose_quotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/test/autoclose_quotes.txt -------------------------------------------------------------------------------- /bundle/delimitMate/test/autoclose_quotes.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/test/autoclose_quotes.vim -------------------------------------------------------------------------------- /bundle/delimitMate/test/expand_cr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/test/expand_cr.txt -------------------------------------------------------------------------------- /bundle/delimitMate/test/expand_cr.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/test/expand_cr.vim -------------------------------------------------------------------------------- /bundle/delimitMate/test/expand_space.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/test/expand_space.txt -------------------------------------------------------------------------------- /bundle/delimitMate/test/expand_space.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/delimitMate/test/expand_space.vim -------------------------------------------------------------------------------- /bundle/gnupg/plugin/gnupg.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/gnupg/plugin/gnupg.vim -------------------------------------------------------------------------------- /bundle/matchit/doc/matchit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/matchit/doc/matchit.txt -------------------------------------------------------------------------------- /bundle/matchit/plugin/matchit.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/matchit/plugin/matchit.vim -------------------------------------------------------------------------------- /bundle/snipmate/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/README -------------------------------------------------------------------------------- /bundle/snipmate/after/plugin/snipMate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/after/plugin/snipMate.vim -------------------------------------------------------------------------------- /bundle/snipmate/autoload/snipMate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/autoload/snipMate.vim -------------------------------------------------------------------------------- /bundle/snipmate/doc/snipMate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/doc/snipMate.txt -------------------------------------------------------------------------------- /bundle/snipmate/doc/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/doc/tags -------------------------------------------------------------------------------- /bundle/snipmate/ftplugin/html_snip_helper.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/ftplugin/html_snip_helper.vim -------------------------------------------------------------------------------- /bundle/snipmate/plugin/snipMate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/plugin/snipMate.vim -------------------------------------------------------------------------------- /bundle/snipmate/snippets/_.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/_.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/autoit.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/autoit.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/c.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/c.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/cpp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/cpp.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/css.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/css.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/eruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/eruby.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/html.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/java.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/java.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/javascript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/javascript.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/mako.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/mako.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/objc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/objc.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/perl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/perl.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/php.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/php.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/python.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/ruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/ruby.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/scss.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/scss.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/sh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/sh.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/snippet.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/snippet.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/tcl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/tcl.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/tex.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/tex.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/vim.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/vim.snippets -------------------------------------------------------------------------------- /bundle/snipmate/snippets/zsh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/snippets/zsh.snippets -------------------------------------------------------------------------------- /bundle/snipmate/syntax/snippet.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/snipmate/syntax/snippet.vim -------------------------------------------------------------------------------- /bundle/surround.vim/doc/surround.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/surround.vim/doc/surround.txt -------------------------------------------------------------------------------- /bundle/surround.vim/doc/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/surround.vim/doc/tags -------------------------------------------------------------------------------- /bundle/surround.vim/plugin/surround.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/surround.vim/plugin/surround.vim -------------------------------------------------------------------------------- /bundle/tComment/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/tComment/README -------------------------------------------------------------------------------- /bundle/tComment/autoload/tcomment.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/tComment/autoload/tcomment.vim -------------------------------------------------------------------------------- /bundle/tComment/doc/tcomment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/tComment/doc/tcomment.txt -------------------------------------------------------------------------------- /bundle/tComment/plugin/tcomment.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/tComment/plugin/tcomment.vim -------------------------------------------------------------------------------- /bundle/vim-auto-save/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/vim-auto-save/README -------------------------------------------------------------------------------- /bundle/vim-auto-save/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/vim-auto-save/README.md -------------------------------------------------------------------------------- /bundle/vim-auto-save/doc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/vim-auto-save/doc/LICENSE.txt -------------------------------------------------------------------------------- /bundle/vim-auto-save/plugin/AutoSave.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/vim-auto-save/plugin/AutoSave.vim -------------------------------------------------------------------------------- /bundle/vim-rails/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/vim-rails/.gitignore -------------------------------------------------------------------------------- /bundle/vim-rails/CONTRIBUTING.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/vim-rails/CONTRIBUTING.markdown -------------------------------------------------------------------------------- /bundle/vim-rails/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/vim-rails/README.markdown -------------------------------------------------------------------------------- /bundle/vim-rails/autoload/rails.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/vim-rails/autoload/rails.vim -------------------------------------------------------------------------------- /bundle/vim-rails/doc/rails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/vim-rails/doc/rails.txt -------------------------------------------------------------------------------- /bundle/vim-rails/plugin/rails.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/bundle/vim-rails/plugin/rails.vim -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happypeter/peter-vim/HEAD/vimrc --------------------------------------------------------------------------------