tata色々な備忘録

データ解析、画像解析、化学分析などなど

vimの環境構築2

参照というかそのまま
http://qiita.com/puriketu99/items/1c32d3f24cc2919203eb

cd ~/vimfiles/bundle
git clone https://github.com/Shougo/neobundle.vim
git clone https://github.com/Shougo/vimproc

_vimrcに下記を記載

if has('vim_starting')
  set runtimepath+=~/vimfiles/bundle/neobundle.vimcall     
  neobundle#begin(expand('~/.vim/bundle/'))
  NeoBundleFetch 'Shougo/neobundle.vim'
  call neobundle#end()
endif

NeoBundle 'Shougo/neobundle.vim'
NeoBundle 'Shougo/vimproc'
NeoBundle 'VimClojure'
NeoBundle 'Shougo/vimshell'
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/neocomplete'
NeoBundle 'Shougo/neosnippet'
NeoBundle 'jpalardy/vim-slime'
NeoBundle 'davidhalter/jedi-vim'
NeoBundle 'Shougo/vimfiler'

filetype plugin indent on     " required!
filetype indent on
syntax on

プラグインのインストール
vin上で:NeoBundleInstall
プラグインのアンインストール
vimrcのNeoBundleの記述を消し、vim上で :NeoBundleClean