From ac5a49f6f0832c97e527cd25c2e3c6eb8626bb43 Mon Sep 17 00:00:00 2001 From: Bodaniel Jeanes Date: Tue, 13 Dec 2011 17:44:35 -0600 Subject: [PATCH] Re-organize bundles --- editors/vim/bundles.vim | 63 +++++++++++++++++++++-------------------- 1 file changed, 33 insertions(+), 30 deletions(-) diff --git a/editors/vim/bundles.vim b/editors/vim/bundles.vim index c704275..2d65703 100644 --- a/editors/vim/bundles.vim +++ b/editors/vim/bundles.vim @@ -12,36 +12,34 @@ call vundle#rc() " Languages/Syntaxes/Frameworks {{{ " Ruby {{{ - Bundle 'vim-ruby/vim-ruby' - Bundle 'tpope/vim-endwise' - Bundle 'tpope/vim-rake' - Bundle 'tpope/vim-haml' - Bundle 'ecomba/vim-ruby-refactoring' + Bundle 'vim-ruby/vim-ruby' + Bundle 'tpope/vim-endwise' + Bundle 'tpope/vim-rake' + Bundle 'tpope/vim-haml' + Bundle 'ecomba/vim-ruby-refactoring' - " " temporarily disable due to speed issues - " " see: https://github.com/tpope/vim-bundler/issues/4 - " Bundle 'tpope/vim-bundler' - " - " " Also this: - " Bundle 'tpope/vim-rails' + Bundle 'tpope/vim-cucumber' + + " " temporarily disable due to speed issues + " " see: https://github.com/tpope/vim-bundler/issues/4 + " Bundle 'tpope/vim-bundler' + " + " " Also this: + " Bundle 'tpope/vim-rails' " }}} " Markdown/Textile/etc {{{ - Bundle 'tpope/vim-markdown' + Bundle 'tpope/vim-markdown' " }}} - " Other {{{ - Bundle 'tpope/vim-cucumber' - " Bundle 'ap/vim-css-color' - Bundle 'kchmck/vim-coffee-script' - Bundle 'pangloss/vim-javascript' - Bundle 'css3' - Bundle 'othree/html5-syntax.vim' - Bundle 'tyok/js-mask' - Bundle 'AnsiEsc.vim' - Bundle 'thisivan/vim-matchit' - + " HTML/CSS/Javascript {{{ + Bundle 'kchmck/vim-coffee-script' + Bundle 'pangloss/vim-javascript' + Bundle 'css3' + Bundle 'othree/html5-syntax.vim' + " Bundle 'ap/vim-css-color' " }}} + " }}} " Git {{{ @@ -116,6 +114,13 @@ call vundle#rc() imap a> :Tabularize /=>a imap a: :Tabularize /\z:a + "" Assignments etc + " These need more work: + " TODO: - keep cursor position + " - don't align equals sign if inside hashrocket + " inoremap => =>:Tabularize /=> a + " inoremap = =:Tabularize /=a + " Auto-align "" Cucumber inoremap :call align()a @@ -130,13 +135,6 @@ call vundle#rc() endif endfunction - "" Assignments etc - " These need more work: - " TODO: - keep cursor position - " - don't align equals sign if inside hashrocket - " inoremap => =>:Tabularize /=> a - " inoremap = =:Tabularize /=a - Bundle 'scrooloose/nerdcommenter' let NERDSpaceDelims = 1 " space between comment and code map // NERDCommenterToggle @@ -189,6 +187,11 @@ call vundle#rc() let g:syntastic_disabled_filetypes = ['cucumber'] " }}} +" Other {{{ + Bundle 'AnsiEsc.vim' + Bundle 'thisivan/vim-matchit' +" }}} + autocmd BufWritePost bundles.vim source ~/.vim/bundles.vim filetype plugin indent on