Skip to content

Instantly share code, notes, and snippets.

@kamichidu
Created May 21, 2013 23:18
Show Gist options
  • Save kamichidu/5624058 to your computer and use it in GitHub Desktop.
Save kamichidu/5624058 to your computer and use it in GitHub Desktop.
" neobundle {{{
if has('vim_starting')
set runtimepath+=~/.bundle/neobundle.vim/
endif
call neobundle#rc(expand('~/.bundle/'))
" let NeoBundle manage NeoBundle
" required!
filetype off
filetype plugin indent off
" neobundleはneobundle管理しないほうがいい
NeoBundleFetch 'Shougo/neobundle.vim'
" recommended to install
NeoBundle 'Shougo/vimproc', {
\ 'build': {
\ 'unix': 'make -f make_unix.mak',
\ },
\}
" after install, turn shell ~/.bundle/vimproc, (n,g)make -f your_machines_makefile
NeoBundle 'DrawIt'
NeoBundle 'Shougo/neocomplcache'
NeoBundle 'Shougo/unite.vim', {
\ 'name': 'unite.vim',
\}
NeoBundle 'Shougo/vimshell', {
\ 'depends': ['Shougo/unite.vim', 'Shougo/vimproc'],
\}
NeoBundle 'Shougo/vimfiler', {
\ 'depends': ['Shougo/unite.vim', 'Shougo/vimproc'],
\}
NeoBundle 'Shougo/neosnippet', {
\ 'depends': ['Shougo/neocomplcache'],
\}
" 読み込み設定は、-bつきで起動されたときくらい?
NeoBundleLazy 'Shougo/vinarise'
NeoBundle 'autodate.vim'
NeoBundle 'mattn/gist-vim'
NeoBundle 'mattn/webapi-vim'
NeoBundleLazy 'mattn/zencoding-vim', {
\ 'autoload': {
\ 'filetypes': ['html', 'xml', 'javascript'],
\ },
\}
NeoBundle 'quickhl.vim'
NeoBundle 'sudo.vim'
" NeoBundle 'taglist.vim'
NeoBundle 'thinca/vim-ref'
NeoBundle 'pekepeke/ref-javadoc', {
\ 'depends': ['thinca/vim-ref'],
\}
NeoBundle 'tyru/open-browser.vim'
NeoBundle 'thinca/vim-quickrun'
" NeoBundle 'git://github.com/tyru/vim-altercmd.git'
NeoBundle 'kana/vim-tabpagecd'
NeoBundle 'kana/vim-surround'
NeoBundleLazy 'https://code.google.com/p/vimwiki/', {
\ 'type': 'hg',
\ 'autoload': {
\ 'mappings': ['\ww', '\wt', '<Plug>VimwikiIndex', '<Plug>VimwikiTabIndex'],
\ }
\}
NeoBundle 'tomtom/tcomment_vim'
NeoBundle 'tyru/vim-altercmd'
NeoBundle 'koron/maze3d-vim'
NeoBundle 'koron/nyancat-vim'
NeoBundle 'h1mesuke/vim-alignta'
NeoBundleLazy 'jiangmiao/simple-javascript-indenter', {
\ 'autoload': {
\ 'filetypes': ['javascript'],
\ },
\}
NeoBundleLazy 'jelera/vim-javascript-syntax', {
\ 'autoload': {
\ 'filetypes': ['javascript'],
\ },
\}
NeoBundleLazy 'teramako/jscomplete-vim', {
\ 'autoload': {
\ 'filetypes': ['javascript'],
\ },
\}
NeoBundleLazy 'scrooloose/syntastic', {
\ 'autoload': {
\ 'filetypes': ['javascript', 'html', 'xml', 'css', 'perl'],
\ },
\}
NeoBundleLazy 'kchmck/vim-coffee-script', {
\ 'autoload': {
\ 'filetypes': ['coffee'],
\ },
\}
NeoBundle 'majutsushi/tagbar'
NeoBundle 't9md/vim-textmanip'
NeoBundle 'godlygeek/csapprox'
NeoBundleLazy 'Rykka/colorv.vim', {
\ 'depends': ['mattn/webapi-vim'],
\ 'build': {
\ 'unix': 'make -f autoload/Makefile',
\ },
\}
NeoBundle 'candycode.vim'
NeoBundleLazy 'Rip-Rip/clang_complete', {
\ 'autoload': {
\ 'filetypes': ['c', 'cpp'],
\ },
\}
NeoBundleLazy 'Shougo/neocomplcache-clang_complete', {
\ 'autoload': {
\ 'filetypes': ['c', 'cpp'],
\ },
\}
NeoBundle 'javacomplete', {
\ 'build': {
\ 'unix': 'javac autoload/Reflection.java',
\ },
\}
NeoBundle 'Shougo/echodoc'
NeoBundle 'kana/vim-submode'
NeoBundle 'osyo-manga/vim-precious'
NeoBundle 'choplin/unite-vim_hacks', {
\ 'depends': ['Shougo/unite.vim', 'mattn/webapi-vim', 'mattn/wwwrenderer-vim', 'thinca/vim-openbuf'],
\}
" TODO: qfixhowmもneobundle管理してdepends設定
NeoBundle 'osyo-manga/unite-qfixhowm', {
\ 'depends': ['Shougo/unite.vim'],
\}
NeoBundle 'mattn/qiita-vim'
" required!
filetype plugin indent on
" }}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment