blob: 6740624bc306212511915ed681538e1fc79ad21b [file] [log] [blame]
Bram Moolenaar1b5f03e2023-01-09 20:12:45 +00001" Vim syntax file
2" Language: EditorConfig
3" Maintainer: Gregory Anders <greg@gpanders.com>
4" Last Change: 2023-01-03
5
6if exists('b:current_syntax')
7 finish
8endif
9
10runtime! syntax/dosini.vim
11unlet! b:current_syntax
12
13syntax match editorconfigUnknownProperty "^\s*\zs\w\+\ze\s*="
14
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'