52 lines
1.8 KiB
VimL
52 lines
1.8 KiB
VimL
set nocompatible " be iMproved, required
|
|
filetype off " required
|
|
|
|
" set the runtime path to include Vundle and initialize
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
call vundle#begin()
|
|
" alternatively, pass a path where Vundle should install plugins
|
|
"call vundle#begin('~/some/path/here')
|
|
|
|
" let Vundle manage Vundle, required
|
|
Plugin 'gmarik/Vundle.vim'
|
|
" doesn't appear to work in OS X but this plugin scan scan projects and support
|
|
" automatically adding imports
|
|
Plugin 'rustushki/JavaImp.vim'
|
|
" map a hotkey to opena split buffer showing the ctags driven structure of some
|
|
" source
|
|
Plugin 'Tagbar'
|
|
" dependency for easytags
|
|
Plugin 'vim-misc'
|
|
" continuously update ctags as buffers are saved
|
|
Plugin 'easytags.vim'
|
|
" look for .editorconfig and merge into vim settings
|
|
Plugin 'editorconfig/editorconfig-vim'
|
|
" Scala and SBT support
|
|
Plugin 'derekwyatt/vim-scala'
|
|
Plugin 'derekwyatt/vim-sbt'
|
|
" file and dir browser
|
|
Plugin 'scrooloose/nerdtree'
|
|
" syntax checking on steroids
|
|
Plugin 'scrooloose/syntastic'
|
|
" integrate ack, especially to be able to open matches, hugely useful for
|
|
" code aware search
|
|
Plugin 'rking/ag.vim'
|
|
" lightweight but sophisticated status line
|
|
Plugin 'bling/vim-airline'
|
|
" git integration
|
|
Plugin 'tpope/vim-fugitive'
|
|
" heavily designed color scheme for readability
|
|
Plugin 'altercation/vim-colors-solarized'
|
|
" visualize vim's undo tree
|
|
Plugin 'sjl/gundo.vim'
|
|
" better support for JS
|
|
Plugin 'pangloss/vim-javascript'
|
|
" find, complete, etc. on steroids
|
|
Plugin 'Shougo/unite.vim'
|
|
" proc supports the async file recursion mode in Unite
|
|
Plugin 'Shougo/vimproc.vim'
|
|
" auto detect tab and space handling rather than setting per project
|
|
Plugin 'tpope/vim-sleuth'
|
|
|
|
" All of your Plugins must be added before the following line
|
|
call vundle#end() " required
|