blob: 554c948eb0d5ea6a02ffdb1e9a95d4e624368d05 [file] [log] [blame]
yu-yk6ccf6da2024-06-20 22:08:19 +02001" Vim filetype plugin file
2" Language: go module file
3" Maintainer: YU YUK KUEN <yukkuen.yu719@gmail.com>
4" Last Change: 2024-06-21
markmacodebabea522024-07-16 21:27:58 +02005" 2024 Jul 16 by Vim Project (noexpandtab)
yu-yk6ccf6da2024-06-20 22:08:19 +02006
7if exists('b:did_ftplugin')
8 finish
9endif
10let b:did_ftplugin = 1
11
markmacodebabea522024-07-16 21:27:58 +020012setlocal noexpandtab
yu-yk6ccf6da2024-06-20 22:08:19 +020013setlocal formatoptions-=t formatoptions-=c
14setlocal commentstring=//\ %s
15
markmacodebabea522024-07-16 21:27:58 +020016let b:undo_ftplugin = 'setl et< fo< cms<'