Ubuntu Desktop 22.04のviコマンドを高機能版のvimに切り替える!

vimのバージョン確認(Small版確認)

vimのバージョンを確認します。22.04では、以下のように表示されます。

$ vi --version
VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Apr 18 2023 11:40:57)
Included patches: 1-3995, 4563, 4646, 4774, 4895, 4899, 4901, 4919
Modified by team+vim@tracker.debian.org
Compiled by team+vim@tracker.debian.org
Small version without GUI.  Features included (+) or not (-):
...

Small version without GUI版になっていることがわかります。

vimのHuge版のインストール

vimのHuge版をインストールします。

$ sudo apt install vim

vimのバージョン確認(Huge版確認)

vimのバージョンを確認します。20.04では、以下のうように表示されます。

$ vi --version
VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Apr 18 2023 11:40:57)
Included patches: 1-3995, 4563, 4646, 4774, 4895, 4899, 4901, 4919
Modified by team+vim@tracker.debian.org
Compiled by team+vim@tracker.debian.org
Huge version without GUI.  Features included (+) or not (-):
...

Huge version without GUI版になっていることがわかります。

デフォルトのエディタをHuge版に変更

デフォルトのエディタをHuge版に変更します。(vim.basicへの変更)

$ sudo update-alternatives --config editor
There are 4 choices for the alternative editor (providing /usr/bin/editor).

  Selection    Path                Priority   Status
------------------------------------------------------------
* 0            /bin/nano            40        auto mode
  1            /bin/ed             -100       manual mode
  2            /bin/nano            40        manual mode
  3            /usr/bin/vim.basic   30        manual mode
  4            /usr/bin/vim.tiny    15        manual mode

Press <enter> to keep the current choice[*], or type selection number: 3
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/editor (editor) in manual mode
$ sudo update-alternatives --config editor
There are 4 choices for the alternative editor (providing /usr/bin/editor).

  Selection    Path                Priority   Status
------------------------------------------------------------
  0            /bin/nano            40        auto mode
  1            /bin/ed             -100       manual mode
  2            /bin/nano            40        manual mode
* 3            /usr/bin/vim.basic   30        manual mode
  4            /usr/bin/vim.tiny    15        manual mode

おわりに

vimのHuge版をインストールして、viコマンドをvimのSmall版から高機能なHuge版に切り替えました。

関連記事

関連書籍(Amazon)

N/A