UbuntuのデフォルトエディタはNanoである。
私はVimが好きなので、デフォルトエディタをVimに変更する方法をメモしておく。
私はVimが好きなので、デフォルトエディタをVimに変更する方法をメモしておく。
Ubuntuのシェルで以下のコマンドを実行する。
$ sudo update-alternatives --config editor
すると、以下のような出力がされるので、デフォルトにしたいエディタのSelection列の番号を入力してEnterを押すと、設定が完了する。 以下の例では、/usr/bin/vim.basicがデフォルトエディタに設定される。
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
コメント