blob: e432ebf1961645c81dad4b5c7e73ff5482cdc4bb [file] [log] [blame]
Bram Moolenaar96f45c02019-10-26 19:53:45 +02001" Vim filetype plugin file
2" Language: meson
3" License: VIM License
4" Original Author: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5" Last Change: 2018 Nov 27
6
7if exists("b:did_ftplugin") | finish | endif
8let b:did_ftplugin = 1
9let s:keepcpo= &cpo
10set cpo&vim
11
12setlocal commentstring=#\ %s
13setlocal comments=:#
14
15setlocal shiftwidth=2
16setlocal softtabstop=2
17
18let &cpo = s:keepcpo
19unlet s:keepcpo