解决Windows下Vim中文乱码
在Windows下使用Vim打开文件时中文字符会显示为乱码
解决方法: 在配置文件开始处加入以下三行
1
2
3
set encoding=utf-8
set fileencodings=utf-8,ucs-bom,cp936,big5
set fileencoding=utf-8
Vim配置文件位置:{Vim安装目录}\_vimrc
或在gVim中选择菜单“编辑”-“启动设定”
重新启动Vim,中文字符即可正确显示
This post is licensed under CC BY 4.0 by the author.