Browse Source

Go stuff

master
Taylor Bockman 8 years ago
parent
commit
e8d7f34129
  1. 3
      dotfiles/config/nvim/init.vim

3
dotfiles/config/nvim/init.vim

@ -145,6 +145,9 @@ autocmd BufNewFile,BufRead *.py setlocal colorcolumn=80
" Disable the rust style guide recommended 4 space indentation " Disable the rust style guide recommended 4 space indentation
let g:rust_recommended_style=0 let g:rust_recommended_style=0
" Explicitly provide vim-go the gofmt command
let g:go_fmt_command = "gofmt"
" Hotkeys " Hotkeys
" Note noremap is a normal mode non-recursive mapping " Note noremap is a normal mode non-recursive mapping
" nnoremap and nmap make the bind only work in normal mode " nnoremap and nmap make the bind only work in normal mode

Loading…
Cancel
Save