yu-yk | 6ccf6da | 2024-06-20 22:08:19 +0200 | [diff] [blame] | 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 | |||||
6 | if exists('b:did_ftplugin') | ||||
7 | finish | ||||
8 | endif | ||||
9 | let b:did_ftplugin = 1 | ||||
10 | |||||
11 | setlocal formatoptions-=t formatoptions-=c | ||||
12 | setlocal commentstring=//\ %s | ||||
13 | |||||
14 | let b:undo_ftplugin = 'setl fo< cms<' |