go.nvim/ftplugin/gomod.vim

14 lines
277 B
VimL
Raw Normal View History

2022-11-03 01:53:45 +00:00
" don't spam the user when Vim is started in Vi compatibility mode
let s:cpo_save = &cpo
set cpo&vim
setlocal formatoptions-=t
setlocal comments=://
setlocal commentstring=//\ %s
" restore Vi compatibility settings
let &cpo = s:cpo_save
unlet s:cpo_save
" vim: sw=2 ts=2 et