Created
September 9, 2020 13:56
-
-
Save davidbegin/aae8f8ac8ae73fd139b7f0a1cdd3f0df 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
noremap ,g :!go run ./%<cr> | |
noremap ,t :!make test<cr> | |
setlocal omnifunc=v:lua.vim.lsp.omnifunc | |
compiler go | |
nnoremap <buffer> <space> :silent make <bar> redraw!<CR> | |
" noremap ,G :w!\|!go run --gcflags "-m=2" ./%<cr> | |
" noremap <localleader>g :w!\|!go run ./%<cr> | |
" noremap ,g :w!\|!go build; ./main<cr> | |
" | |
" GoBeginWorldHTML | |
" noremap ,f :!gofmt %<cr> | |
" | |
" noremap ,t go test ./... | |
" noremap ,t :!make test<cr> | |
" go run ./% | |
" Run goimports along gofmt on each save | |
let g:go_fmt_command = "goimports" | |
" Automatically get signature/type info for object under cursor | |
let g:go_auto_type_info = 1 | |
" Only show automcomplete after hitting . | |
" Hmmmm, why doesn't this work | |
" This only works not for vim-go | |
" inoremap <buffer> . .<C-x><C-o> | |
set autowrite | |
" Not using these really | |
" https://github.com/fatih/vim-go/wiki/Tutorial | |
map <C-n> :cnext<CR> | |
map <C-m> :cprevious<CR> | |
nnoremap <leader>a :cclose<CR> | |
" I either want it off, or the trigger higher | |
let g:completion_trigger_keyword_length = 3 " default = 1 | |
let g:completion_enable_auto_popup = 0 | |
" let g:diagnostic_enable_virtual_text = 1 | |
let g:diagnostic_insert_delay = 0 | |
let g:diagnostic_auto_popup_while_jump = 0 | |
function! s:check_back_space() abort | |
let col = col('.') - 1 | |
return !col || getline('.')[col - 1] =~ '\s' | |
endfunction | |
inoremap <silent><expr> <TAB> | |
\ pumvisible() ? "\<C-n>" : | |
\ <SID>check_back_space() ? "\<TAB>" : | |
\ completion#trigger_completion() | |
let g:completion_enable_auto_signature = 0 | |
let g:go_highlight_extra_types = 1 | |
let g:go_highlight_types = 1 | |
let g:go_highlight_fields = 1 | |
let g:go_highlight_functions = 1 | |
let g:go_highlight_function_calls = 1 | |
let g:go_highlight_operators = 1 | |
let g:go_highlight_extra_types = 1 | |
let g:go_metalinter_deadline = "5s" | |
let g:go_auto_type_info = 1 | |
set updatetime=100 | |
let g:go_auto_sameids = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment