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.

vi/vimおよびsudo vi/vimで日本語が文字化けする時の対処法

Posted at

文字化けの解消法

1. ~/.vimrcに設定を追記する(ファイルはなければ作成する)

$ sudo vi ~/.vimrc
~/.vimrc
set encoding=utf-8
set fileencodings=iso-2022-jp,euc-jp,sjis,utf-8
set fileformats=unix,dos,mac

2. ~/.vimrcの設定を反映する

source ~/.vimrc

しかし、上記では$ sudo vi(もしくはvim)とした際には文字化けしてしまう可能性がある。
原因は、sudoした時に参照される.vimrcファイルは/root/.vimrcの方だから。
よって、$ sudo viの時はこちらも変更する必要がある。

3. /root/.vimrcにも設定を追記する(ファイルはなければ作成する)

$ sudo vi /root/.vimrc
~/.vimrc
set encoding=utf-8
set fileencodings=iso-2022-jp,euc-jp,sjis,utf-8
set fileformats=unix,dos,mac
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?