15 lines
337 B
VimL
15 lines
337 B
VimL
|
" Terminal support
|
||
|
let g:go_term_enabled = 1
|
||
|
let g:go_term_mode = "split"
|
||
|
let g:go_term_height = 15
|
||
|
|
||
|
" Highlighting
|
||
|
let g:go_highlight_functions = 1
|
||
|
let g:go_highlight_function_calls = 1
|
||
|
let g:go_highlight_structs = 1
|
||
|
let g:go_highlight_operators = 1
|
||
|
let g:go_highlight_build_constraints = 1
|
||
|
|
||
|
" Formatting
|
||
|
let g:go_fmt_command = 'gopls'
|