From 9b60dd3c824a220db1db01dc02e6af75ee43605a Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Sat, 13 Jul 2024 20:02:44 +0300 Subject: [PATCH] [vim] added coc-go --- vim/vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 68e6044..98bd2af 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -176,9 +176,9 @@ let g:ansible_yamlKeyName = 'yamlKey' " " CoC plugin settings " -let g:coc_global_extensions = ['coc-pyright', 'coc-sh'] +let g:coc_global_extensions = ['coc-pyright', 'coc-sh', 'coc-go'] function! s:enable_coc_for_type() - let l:filesuffix_whitelist = ['py', 'sh'] + let l:filesuffix_whitelist = ['py', 'sh', 'go'] if index(l:filesuffix_whitelist, expand('%:e')) == -1 let b:coc_enabled = 0 endif