6
4

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.

pathogen.vim をインストールする方法

Posted at

pathogen.vim をインストールする方法をメモっとく。

Vim のプラグイン管理にはシンプルな pathogen.vim がいい。

pathogen.vim のインストール

pathogen.vim ファイルを ~/.vim/autoload ディレクトリに保存して、execute pathogen#infect()~/.vimrc に追記するだけでインストール完了。

$ curl --create-dirs -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
$ echo 'execute pathogen#infect()' >> ~/.vimrc

プラグインのインストール

プラグインは各プラグインのリポジトリから ~/.vim/bundle ディレクトリにクローンしてくるだけでインストールできる。ここでは例として ctrlp.vim をインストールしてみる。

$ git clone https://github.com/ctrlpvim/ctrlp.vim.git ~/.vim/bundle/ctrlp.vim

プラグインのアップデート

プラグインはリポジトリをクローンしてインストールしているので、プラグインのディレクトリ(ローカルリポジトリ)で git pull を実行するだけでアップデートできる。

$ cd ~/.vim/bundle/ctrlp.vim
$ git pull

この記事では pathogen.vim をインストールする方法について説明した。Vim 8.0 がリリースされてパッケージの仕組みが追加されたので、pathogen.vim は今後不要になっていきそうだね。

6
4
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
6
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?