Skip to content

Instantly share code, notes, and snippets.

@mjacobus
Created July 25, 2014 03:01
Show Gist options
  • Save mjacobus/49002bb19638411402c3 to your computer and use it in GitHub Desktop.
Save mjacobus/49002bb19638411402c3 to your computer and use it in GitHub Desktop.
" Bundle "altercation/vim-colors-solarized"
" Bundle "chriskempson/base16-vim"
" Bundle "tsaleh/vim-matchit"
" TODO: Find out what it does
Bundle "vim-ruby/vim-ruby"
Bundle "kchmck/vim-coffee-script"
Bundle "jiangmiao/auto-pairs"
Bundle "tpope/vim-surround"
Bundle "tomtom/tcomment_vim"
" % matches more than a single char
Bundle "tmhedberg/matchit"
Bundle "groenewege/vim-less"
" Bundle "shawncplus/php.vim"
Bundle "shawncplus/phpcomplete.vim"
" Html autocomplete and stuff... not sure if it works great.
Bundle "othree/html5.vim"
" Probably dependency
Bundle "tomtom/tlib_vim"
" No idea. Dependency for snipmate
Bundle "MarcWeber/vim-addon-mw-utils"
" Temporarily disabled. Seems to mess up a few movements
Bundle "garbas/vim-snipmate"
Bundle "honza/vim-snippets"
" ------------------------------------------------------------------------------
Bundle "mattn/emmet-vim"
" let g:user_emmet_install_global = 0
" autocmd FileType html,css EmmetInstall
" aligns strings
Bundle "vim-scripts/Align"
Bundle "mjacobus/vim-rspec-focus"
Bundle "tpope/vim-fugitive"
" Bundle "joonty/vim-phpqa"
" " Clover code coverage XML file
" let g:phpqa_codecoverage_file = "coverage/coverage.xml"
" " Show markers for lines that ARE covered by tests (default = 1)
" let g:phpqa_codecoverage_showcovered = 0
" Set the codesniffer args
" let g:phpqa_codesniffer_args = "--standard=Zend"
" Don't run messdetector on save (default = 1)
" let g:phpqa_messdetector_autorun = 0
" Don't run codesniffer on save (default = 1)
" let g:phpqa_codesniffer_autorun = 0"
" ------------------------------------------------------------------------------
Bundle "majutsushi/tagbar"
noremap <leader>tb :TagbarToggle<cr>
" ------------------------------------------------------------------------------
Bundle "pgr0ss/vimux-ruby-test"
noremap <leader>rt :RunAllRubyTests<cr>
Bundle "nathanaelkane/vim-indent-guides"
hi IndentGuidesOdd ctermbg=black
hi IndentGuidesEven ctermbg=darkgrey
let g:indent_guides_guide_size=1
let g:indent_guides_start_level=2
Bundle "wikitopian/hardmode"
nnoremap <leader>h <Esc>:call ToggleHardMode()<CR>
Bundle "tpope/vim-repeat"
" ------------------------------------------------------------------------------
" Eases the process of creating aliases
" Bundle "tpope/vim-abolish"
Bundle "git://github.com/pangloss/vim-javascript.git"
Bundle "git://github.com/vim-scripts/L9.git"
Bundle "git://github.com/tpope/vim-rake.git"
Bundle "git://github.com/vim-ruby/vim-ruby.git"
Bundle "git://github.com/ervandew/supertab.git"
Bundle "git://github.com/michaeljsmith/vim-indent-object.git"
Bundle "git://github.com/kana/vim-textobj-user.git"
Bundle "git://github.com/nelstrom/vim-textobj-rubyblock.git"
Bundle "git://github.com/tpope/vim-repeat.git"
Bundle "git://github.com/vim-scripts/ruby-matchit.git"
Bundle "git://github.com/wgibbs/vim-irblack.git"
" Bundle "git://github.com/wavded/vim-stylus.git"
Bundle "tpope/vim-abolish"
" Dash Searching"
Bundle "rizzatti/funcoo.vim"
Bundle "rizzatti/dash.vim"
Bundle "git://github.com/groenewege/vim-less.git"
au BufNewFile,BufRead *.less set filetype=less
" Coffee script
Bundle "git://github.com/kchmck/vim-coffee-script.git"
au BufNewFile,BufRead *.coffee set filetype=coffee
" Tagbar for navigation by tags using CTags
Bundle "git://github.com/majutsushi/tagbar.git"
let g:tagbar_autofocus = 1
map <Leader>rt :!ctags --extra=+f -R *<CR><CR>
map <Leader>. :TagbarToggle<CR>
Bundle "git://github.com/vim-scripts/ZoomWin.git"
map <Leader>z :ZoomWin<CR>
Bundle "git://github.com/tpope/vim-unimpaired.git"
" gundo for awesome undo tree visualization
Bundle "git://github.com/sjl/gundo.vim.git"
map <Leader>h :GundoToggle<CR>
Bundle "nelstrom/vim-visual-star-search"
" snipmate and dependencies
Bundle "garbas/vim-snipmate"
Bundle "honza/vim-snippets"
Bundle "MarcWeber/vim-addon-mw-utils"
Bundle "tomtom/tlib_vim"
Bundle "mattn/emmet-vim"
Bundle "wikitopian/hardmode"
nnoremap <leader>h <Esc>:call ToggleHardMode()<CR>
" fugitive
autocmd BufReadPost fugitive://* set bufhidden=delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment