CentOS7 系统基于Vim8搭建Go语言开发环境
生活随笔
收集整理的這篇文章主要介紹了
CentOS7 系统基于Vim8搭建Go语言开发环境
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
鏈接:https://pdf.us/2018/11/10/2194.html
?
問題1:vim-go: could not find 'gopls'. Run :GoInstallBinaries to fix it
解決:https://www.cnblogs.com/jiftle/p/11285930.html
?
問題2:YouCompleteMe unavailable: requires Vim compiled with Python 2.x support
vimrc配置:
[root@wangjq cable]# cat /root/.vimrc syntax on set hlsearch set nu set nocompatible filetype off set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' Plugin 'fatih/vim-go' call vundle#end() filetype plugin indent on let g:go_version_warning = 1 let g:go_highlight_types = 1 let g:go_highlight_fields = 1 let g:go_highlight_functions = 1 let g:go_highlight_function_calls = 1 let g:go_highlight_operators = 1 let g:go_highlight_extra_types = 1 Plugin 'Valloric/YouCompleteMe' set nocompatible set backspace=indent,eol,start set ts=4 "set expandtab if has("autocmd")au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif endif?
轉載于:https://www.cnblogs.com/wangjq19920210/p/11441229.html
總結
以上是生活随笔為你收集整理的CentOS7 系统基于Vim8搭建Go语言开发环境的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [PHP] 深度解析Nginx下的PHP
- 下一篇: centos7.4安装图形界面及报错处理