neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

gomod.vim (384B)


      1 " Vim filetype plugin file
      2 " Language:    go module file
      3 " Maintainer:  YU YUK KUEN <yukkuen.yu719@gmail.com>
      4 " Last Change: 2024-06-21
      5 " 2024 Jul 16 by Vim Project (noexpandtab)
      6 
      7 if exists('b:did_ftplugin')
      8  finish
      9 endif
     10 let b:did_ftplugin = 1
     11 
     12 setlocal noexpandtab
     13 setlocal formatoptions-=t formatoptions-=c
     14 setlocal commentstring=//\ %s
     15 
     16 let b:undo_ftplugin = 'setl et< fo< cms<'