blob: 7f75ab628740c9e98a550d4ba82bf53692345fa5 [file] [log] [blame]
Bram Moolenaar1b5f03e2023-01-09 20:12:45 +00001" Vim syntax file
2" Language: EditorConfig
3" Maintainer: Gregory Anders <greg@gpanders.com>
ObserverOfTime958e15b2023-08-09 18:05:39 +03004" Last Change: 2023-07-20
Bram Moolenaar1b5f03e2023-01-09 20:12:45 +00005
6if exists('b:current_syntax')
7 finish
8endif
9
10runtime! syntax/dosini.vim
11unlet! b:current_syntax
12
ObserverOfTime958e15b2023-08-09 18:05:39 +030013syntax match editorconfigUnknownProperty "^\s*\zs[a-zA-Z0-9_-]\+\ze\s*="
Bram Moolenaar1b5f03e2023-01-09 20:12:45 +000014
15syntax keyword editorconfigProperty root charset end_of_line indent_style
16syntax keyword editorconfigProperty indent_size tab_width max_line_length
17syntax keyword editorconfigProperty trim_trailing_whitespace insert_final_newline
18
19hi def link editorconfigProperty dosiniLabel
20
21let b:current_syntax = 'editorconfig'