LoginSignup
16
16

More than 5 years have passed since last update.

NeoBundleのインストール

Last updated at Posted at 2014-03-06
$ mkdir -p ~/.vim/bundle
$ git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim

$ vim ~/.vimrc
set nocompatible
filetype off 

if has('vim_starting')
  set runtimepath+=~/.vim/bundle/neobundle.vim

  call neobundle#rc(expand('~/.vim/bundle'))
endif

#NeoBundle 'tpope/vim-surround'
#ここに行を追加していってプラグイン管理します。

filetype plugin on
filetype indent on

プラグインのインストールは:NeoBundleInstall、アンインストールは:NeoBundleCleanです。

公式ページは ここ で良いんですかね? ← 少し古いサイトなので注意したほうが良い旨のコメントをいただきました。ありがとうございます!
GitHubのリポジトリを見るのが確実ですね

shoma2daをフォロー

16
16
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
16