Created
July 14, 2018 01:31
-
-
Save nakabonne/beea6fc07154b445ee5ceea5306a7724 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let g:go_highlight_functions = 1 | |
let g:go_highlight_methods = 1 | |
let g:go_highlight_structs = 1 | |
let g:go_highlight_extra_types = 1 | |
let g:go_highlight_operators = 1 | |
let g:go_highlight_function_calls = 1 | |
let g:go_highlight_types = 1 | |
let g:go_highlight_fields = 1 | |
let g:neomake_go_errcheck_maker = { | |
\ 'append_file': 0, | |
\ 'errorformat': '%f:%l:%c:\ %m, %f:%l:%c\ %#%m', | |
\ } | |
let g:neomake_go_enabled_makers = ['golint', 'govet', 'errcheck'] | |
:command Ge GoErrCheck | |
:command Gi GoImports | |
:command Gc GoCallers |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment