From 8cd514fdf5361f9cf19455e8e40debdd2e3825b5 Mon Sep 17 00:00:00 2001 From: stefan Date: Tue, 6 Feb 2024 23:25:23 +0100 Subject: [PATCH] added gopls for golang autofill --- vim/.vim/after/ftplugin/go.vim | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vim/.vim/after/ftplugin/go.vim b/vim/.vim/after/ftplugin/go.vim index 200f71d..df0fb7f 100644 --- a/vim/.vim/after/ftplugin/go.vim +++ b/vim/.vim/after/ftplugin/go.vim @@ -1,2 +1,9 @@ compiler go noremap :silent make redraw + +let g:ale_linters = { + \ 'go': ['gopls'], + \} + +" let g:ale_completion_enabled = 1 +