Skip to content

Instantly share code, notes, and snippets.

@YoshihitoAso
Last active October 15, 2015 02:42
Show Gist options
  • Select an option

  • Save YoshihitoAso/0a98f2a92f683b2e5b4f to your computer and use it in GitHub Desktop.

Select an option

Save YoshihitoAso/0a98f2a92f683b2e5b4f to your computer and use it in GitHub Desktop.
NeoBundleのインストール(Vim環境の整備)
#インストール
mkdir -p ~/.vim/bundle
git clone git://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
#.vimrcの編集(インストールしたいプラグインとか)
下記みたいな感じに書く
----------------------------------------------------------
if has('vim_starting')
set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
" NeoBundleを初期化
call neobundle#begin(expand('~/.vim/bundle/'))
" インストールするプラグインをここに記述
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/vimfiler'
NeoBundle 'davidhalter/jedi-vim'
call neobundle#end()
" ファイルタイプ別のプラグイン/インデントを有効にする
filetype plugin indent on
----------------------------------------------------------
好きなように編集したら、vim → :NeoBundleInstall コマンドを実行するとインストールされる
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment