blob: 585f4461d3334f8bc40f90b708e629c1398760c5 [file] [log] [blame]
David Pedersenad4764f2024-12-09 19:56:34 +01001" Vim filetype plugin
2" Language: Protobuf
3" Maintainer: David Pedersen <limero@me.com>
4" Last Change: 2024 Dec 09
5
6if exists('b:did_ftplugin')
7 finish
8endif
9let b:did_ftplugin = 1
10
11setlocal formatoptions-=t formatoptions+=croql
12
13setlocal comments=s1:/*,mb:*,ex:*/,://
14setlocal commentstring=//\ %s
15
16let b:undo_ftplugin = "setlocal formatoptions< comments< commentstring<"
17
18" vim: sw=2 sts=2 et