[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.
This commit is contained in:
Marty Oehme 2019-07-23 15:41:23 +02:00
parent 3b710baecc
commit 2b8540f6cf

View file

@ -275,7 +275,7 @@ let g:ale_fixers = {
\}
let g:ale_linters = {
\ 'go': ['golangci-lint','gopls'],
\ 'go': ['gopls'],
\ 'sh': ['language_server','shellcheck','shfmt'],
\}