Quantcast
Channel: tknr.tumblr.com
Viewing all articles
Browse latest Browse all 12789

" 使い方 mkdir -p ~/.vim/bundle git clone https://github.com/Shougo/neobundle.vim..."

$
0
0

使い方

mkdir -p ~/.vim/bundle
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
git clone https://github.com/Shougo/vimproc ~/.vim/bundle/vimproc

下記のようにvimrcを設定

setnocompatible" be iMprovedfiletype off


if has('vim_starting')setruntimepath+=~/.vim/bundle/neobundle.vimcall neobundle#rc(expand('~/.vim/bundle/'))endif" originalrepos on github
NeoBundle 'Shougo/neobundle.vim'
NeoBundle 'Shougo/vimproc'
NeoBundle 'VimClojure'
NeoBundle 'Shougo/vimshell'
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/neocomplcache'
NeoBundle 'Shougo/neosnippet'
NeoBundle 'jpalardy/vim-slime'
NeoBundle 'scrooloose/syntastic'""NeoBundle 'https://bitbucket.org/kovisoft/slimv'filetype plugin indent on" required!filetype indent onsyntaxon

vi上から、:NeoBundleInstallで.vimrcのNeoBundleで指定されているリポジトリのプラグインをインストールできる。
プラグインを削除したい場合は、vimrc上からNeoBundleの記述を消して :NeoBundleCleanでできる。



- Vim - NeoBundleの導入 - Qiita [キータ]

Viewing all articles
Browse latest Browse all 12789

Trending Articles