测试环境:ubuntu 14.04 之kylin 版
vim本身不带golang的语法高亮
解决方案:
在 /usr/share/vim/vim74/ 中
有这么几个文件夹:syntax, ftplugin, indent, compiler等,
我们查看syntax可以看到有gcc.vim等其他语法文件,但是没有go.vim, 好在我们可以从源码下载
http://www.golangtc.com/download 下载 go1.3.3.src.tar.gzgo1.3.3 (source only),解压缩,
将下载目录的 go/misc/vim/中有对应的 syntax, ftplugin, indent, compiler 中的go.vim文件复制到/usr/share/vim/vim74/对应目录,ftdetect文件夹包括文件复制到vim74中。
补充其他设置如下:
$ /usr/share/vim$ vim vimrc
syntax on
set number " 显示行号
set cursorline " 突出显示当前行
set tabstop=4 " Tab键的宽度
" 统一缩进为4
set softtabstop=4
set shiftwidth=4
完成。