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

OS X に Vim を Homebrew でインストールして vi で起動する

Posted at

Homebrew で最新版の Vim を Mac にインストールすることにしたのでその方法をメモっとく。

大したこと書いてないんだけど --with-override-system-vi をつけてインストールすると vi コマンドで最新版の Vim が起動できるということを知ったので記事にした。

最新版の Vim を Homebrew でインストールする

Homebrew を最新にしてから Vim をインストールする。

$ brew update
$ brew install vim --with-override-system-vi

vi コマンドで最新版の Vim が起動できることを確認する

vi/usr/local/bin/vim にリンクしていて起動できることを確認する。

$ which vi
/usr/local/bin/vi
$ ls -l /usr/local/bin/vi
lrwxr-xr-x  1 takuya  admin  29 Nov 10 19:06 /usr/local/bin/vi -> ../Cellar/vim/8.0.0071/bin/vi
$ vi --version
VIM - Vi IMproved 8.0 (2016 Sep 12, compiled Nov 10 2016 19:06:33)
.
.
.
2
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
2
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?