"""=========================================================================== """------- neobundle.vim の設定 ---- 2015/06/02 ---------- """ set nocompatible filetype plugin indent off "for vundle " vim起動時のみruntimepathにneobundle.vimを追加 if has("vim_starting") set nocompatible set runtimepath+=D:\MydownloadProgram\Vim\vim74-kaoriya-win64\_bundle\neobundle.vim endif " Required: " neobundle.vimの初期化 " Neobundleを更新するための設定 call neobundle#begin(expand('d:\MydownloadProgram\Vim\vim74-kaoriya-win64\_bundle')) filetype plugin indent on "for vundle ************** 2015/06/02 " neobundle自体をneobundleで管理 NeoBundleFetch 'Shougo/neobundle.vim' " Installation check. ********************* 2015/06/02 if neobundle#exists_not_installed_bundles() echomsg 'Not installed bundles : ' . \ string(neobundle#get_not_installed_bundle_names()) echomsg 'Please execute ":NeoBundleInstall" command.' "finish endif "*************************** 2015/06/02 " "" Required: "" 読み込むプラグインを記載 [ Neobundle で管理するプラグインをここに書く ] NeoBundle 'Shougo/unite.vim' "Neobundle 'Shougo/vimfiler' "Neobundle 'Shougo/vimproc' " NeoBundle 'Shougo/neocomplete.vim' NeoBundle 'Shougo/neosnippet.vim' NeoBundle 'Shougo/neosnippet-snippets.vim' " call neobundle#end() "NeoBundle 'Shougo/unite.vim' "NeoBundle 'Shougo/neocomplete.vim' "********* 2015/06/02 "NeoBundle 'Shougo/neosnippet' "NeoBundle 'Shougo/neosnippet-snippets' " "" 読み込んだプラグインも含め、ファイルタイプの検出、ファイルタイプ別プラグイン/ "" インデントを有効とする filetype plugin indent on " ""インストールのチェック "" 未インストールのプラグインがある場合、インストールするかどうかを尋ねてくれるようにする設定 "" 毎回聞かれると邪魔な場合もあるので、この設定は任意です。 NeoBundleCheck """ """ end Neobundle settings """ "===========================================================================