blob: 4ea991b9eb25809623b5312bc3dc11777f7a49fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
" Go vim settings
compiler go
" Compile package
nnoremap <buffer> <leader>cc :make<cr>
" Compile file
nnoremap <buffer> <leader>cf :make %<cr>
" Compile & run file
nnoremap <buffer> <leader>cr :!go run %<cr>
" Format
nnoremap <buffer> cdf :!go fmt %<cr>
" Don't preserve indentation on empty lines
inoremap <buffer> <CR> <CR>
nnoremap <buffer> o o
nnoremap <buffer> O O
" Comment string
setlocal commentstring=//\ %s
|