From 35eaf1a601a2dd39ad2ac68a927e6929ab823b1a Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Mon, 28 Jan 2019 18:43:08 -0800 Subject: [PATCH] update go linters --- .vim/plugins.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vim/plugins.vim b/.vim/plugins.vim index fd955bb..65b2423 100644 --- a/.vim/plugins.vim +++ b/.vim/plugins.vim @@ -5,6 +5,7 @@ execute pathogen#infect() " ale let g:ale_lint_on_text_changed = "never" let g:ale_lint_on_enter = "never" +let g:ale_linters = {'go': ['gofmt', 'go vet', 'go build']} " vim-airline let g:airline#extensions#tabline#enabled = 1 @@ -14,7 +15,6 @@ autocmd FileType go let b:argwrap_tail_comma = 1 " vim-go let g:go_fmt_command = 'goimports' -" let g:go_gocode_propose_source = 0 " vim-interestinwords let g:interestingWordsGUIColors = ['#8CCBEA', '#A4E57E', '#FFDB72', '#FF7272', '#FFB3FF', '#9999FF']