From 2b8540f6cff6a536f142faa6c8b78451395cb6fb Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 23 Jul 2019 15:41:23 +0200 Subject: [PATCH] [nvim] Remove golang-ci metalinter, rely on vim-go vim-go already provides the linting necessary for golang. Using golang-ci additionally only complicates matters and provides no benefit. Additionally, it did not seem to be able to track files other than the one in the current buffer, or those open in hidden buffers and would show (false) errors of classes or functions not found even when they existed. --- .config/nvim/init.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 65431b1..5fee861 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -275,7 +275,7 @@ let g:ale_fixers = { \} let g:ale_linters = { - \ 'go': ['golangci-lint','gopls'], + \ 'go': ['gopls'], \ 'sh': ['language_server','shellcheck','shfmt'], \}