Last active
October 15, 2015 02:42
-
-
Save YoshihitoAso/0a98f2a92f683b2e5b4f to your computer and use it in GitHub Desktop.
NeoBundleのインストール(Vim環境の整備)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #インストール | |
| 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