2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

vundle.vim の設置

Posted at

セットアップ

vundle 自身も管理するように考慮する。
モジュールは、~/.vim/bundle 以下で管理されるので、vundle 自身をそこに置けばいい。

mkdir -p ~/.vim/bundle
cd ~/.vim/bundle
git clone https://github.com/gmarik/vundle.git

.vimrc を編集

.vimrc
filetype off
if has('vim_starting')
	set rtp+=~/.vim/bundle/vundle/
	call vundle#rc()
endif

モジュールの取得方法の設定

  • Github から取得する場合
Bundle 'username/repository_name'
ex)
Bundle 'gmarik/vundle'
Bundle 'script_name'
ex)
Bundle 'Align'
  • それ以外の Git リポジトリから取得する場合
Bundle 'git://repository_url'

インストール

インストール

:BundleInstall

アップデート

:BundleInstall!
2
2
0

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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?