https://blog.csdn.net/wonengguwozai/article/details/72885933
VIM安裝成功后可以使用,但對中文是亂碼,解決方法是在vim的配置文檔中添加相關設置即可:
找到etc/vim/.vimrc
編輯~/.vimrc文件,加上如下幾行:
set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936
set termencoding=utf-8
set encoding=utf-8
問題解決。
