vim配置go语言语法高亮问题的解决方法
操作系统 : 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
总结
相关推荐
lerdor 2020-10-14
linzb 2020-09-22
HeronLinuxampARM 2020-09-14
CoderMannul 2020-09-07
lerdor 2020-08-31
ZZBAIFFA 2020-08-31
yonggeno 2020-08-18
yhuihon 2020-08-17
涅磐 2020-08-11
yhuihon 2020-08-09
zhangxl0 2020-07-28
yhuihon 2020-07-26
想个标题偏头痛 2020-07-19
老甘的可读区 2020-07-18
linzb 2020-07-18
xlb 2020-07-12
老甘的可读区 2020-07-09
極愛 2020-07-06