こんにちは、moegi (@moegi_web) です。
編集エディタをnanoからvimに切り替えておくと後々便利ということを教えてもらい早速実践しました。
gitエディタをVimに変更
以下のコマンドでgitエディタをVimに変更します。
git config --global core.editor vim
現在の設定状況を確認する
$ sudo update-alternatives –config editor で現在の設定状況を確認します。
$ sudo update-alternatives --config editor
alternative editor (/usr/bin/editor を提供) には 4 個の選択肢があります。
以下はnanoが設定されている状態です。
$ sudo update-alternatives --config editor
[sudo] password for kmz:
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に変更するには 3 を入力します。
Press to keep the current choice[*], or type selection number: 3
再度確認
vimに変わった!
kmz@DESKTOP-8MN9H7R:~$ 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 to keep the current choice[*], or type selection number:
まとめ
以上、Gitのエディタの設定をnanoからvimに変える方法のまとめでした!
コメント