Browse Source

GoMetaLinter -> GoLint

master
Taylor Bockman 7 years ago
parent
commit
6d0ac9a851
  1. 4
      dotfiles/config/nvim/init.vim

4
dotfiles/config/nvim/init.vim

@ -198,8 +198,8 @@ endif
let g:syntastic_javascript_checkers = ['eslint']
let g:syntastic_javascript_jsxhint_exec = 'eslint'
" Go linting on write. This takes advantage of :GoMetaLinter in vim-go and requires golint to be installed
autocmd BufWritePost,FileWritePost *.go execute 'GoMetaLinter' | cwindow
" Go linting on write. This takes advantage of :GoLint in vim-go and requires golint to be installed
autocmd BufWritePost,FileWritePost *.go execute 'GoLint' | cwindow
" Color customizations
colorscheme zenburn

Loading…
Cancel
Save