在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
操作系统 : CentOS7.3.1611_x64 go 版本 : go1.8.3 linux/amd64 vim版本 :version 7.4.160 vim配置go语言语法高亮的问题已经遇到过好几次了,每次都去查找太麻烦,这里总结下。 安装git: yum install git 安装vim-go : cd ~ mkdir .vim cd .vim mkdir autoload plugged cd plugged git clone https://github.com/fatih/vim-go vim-go cd autoload wget https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim 配置vimrc文件: [root@localhost ~]# cat ~/.vimrc call plug#begin() Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' } call plug#end() let g:go_version_warning = 0 [root@localhost ~]# 如果觉得上面的操作比较麻烦,可以使用这里的压缩文件: https://github.com/mike-zhang/mikeBlogEssays/tree/master/2018/other/20180123_vim_go 具体如下: cd ~ tar zxvf vim.tar.gz tar zxvf vimrc.tar.gz 好,就这些了,希望对你有帮助。 本文github地址: https://github.com/mike-zhang/mikeBlogEssays/blob/master/2018/20180123_vim配置go语法高亮.rst 欢迎补充 |
请发表评论