You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go.nvim/ftplugin/go.vim

15 lines
214 B
VimL

let s:cpo_save = &cpo
set cpo&vim
let &cpo = s:cpo_save
unlet s:cpo_save
setlocal formatoptions-=t
setlocal comments=s1:/*,mb:*,ex:*/,://
setlocal commentstring=//\ %s
setlocal noexpandtab
" vim: sw=2 ts=2 et