Skip to content

Instantly share code, notes, and snippets.

@hibiki
Created November 11, 2012 08:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hibiki/4054159 to your computer and use it in GitHub Desktop.
Save hibiki/4054159 to your computer and use it in GitHub Desktop.
neobundle用
"---------------------------------------------------------------------------
" neobundle.vim
"---------------------------------------------------------------------------
set nocompatible " Be iMproved
filetype off " Required!
if has('vim_starting')
" set runtimepath+=d:/tool/vim/.bundle/neobundle.vim
" call neobundle#rc(expand('d:/tool/vim/.bundle'))
set runtimepath+=~/.bundle/neobundle.vim
call neobundle#rc(expand('~/.bundle'))
endif
"自動でリポジトリと同期するプラグイン
NeoBundle 'git://github.com/Shougo/neocomplcache.git'
NeoBundle 'git://github.com/Shougo/neobundle.vim.git'
NeoBundle 'git://github.com/Shougo/vimproc.git'
NeoBundle 'git://github.com/Shougo/unite.vim.git'
NeoBundle 'git://github.com/Shougo/vimfiler.git'
NeoBundle 'git://github.com/Shougo/vimshell.git'
NeoBundle 'git://github.com/tpope/vim-surround.git'
NeoBundle 'git://github.com/tpope/vim-repeat.git'
NeoBundle 'git://github.com/ujihisa/unite-colorscheme.git'
NeoBundle 'git://github.com/ujihisa/vimshell-ssh.git'
NeoBundle 'git://github.com/altercation/vim-colors-solarized.git'
NeoBundle 'git://github.com/vim-jp/vimdoc-ja.git'
NeoBundle 'git://github.com/kana/vim-smartchr.git'
NeoBundle 'git://github.com/mattn/zencoding-vim.git'
NeoBundle 'git://github.com/mattn/gist-vim.git'
NeoBundle 'git://github.com/mattn/webapi-vim.git'
NeoBundle 'git://github.com/Lokaltog/vim-easymotion.git'
NeoBundle 'git://github.com/hail2u/vim-css3-syntax.git'
NeoBundle 'git://github.com/othree/eregex.vim.git'
NeoBundle 'git://gist.github.com/411828.git', {'directory': 'endtagcomment'}
NeoBundle 'git://github.com/cakebaker/scss-syntax.vim.git'
NeoBundle 'git://github.com/jpo/vim-railscasts-theme.git'
NeoBundle 'git://github.com/scrooloose/nerdtree.git'
"リポジトリを持たないプラグイン
"NeoBundle 'monday', {'type' : 'nosync', 'base' : '~/.bundle_manual'}
"NeoBundle 'ShowMarks', {'type' : 'nosync', 'base' : '~/.bundle_manual'}
"NeoBundle 'commentout', {'type' : 'nosync', 'base' : '~/.bundle_manual'}
"NeoBundle 'colorscheme', {'type' : 'nosync', 'base' : '~/.bundle_manual'}
NeoBundleLocal ~/.bundle_manual
filetype plugin on
filetype indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment