31671
|
1 " Vim syntax file
|
|
2 " Language: EditorConfig
|
|
3 " Maintainer: Gregory Anders <greg@gpanders.com>
|
|
4 " Last Change: 2023-01-03
|
|
5
|
|
6 if exists('b:current_syntax')
|
|
7 finish
|
|
8 endif
|
|
9
|
|
10 runtime! syntax/dosini.vim
|
|
11 unlet! b:current_syntax
|
|
12
|
|
13 syntax match editorconfigUnknownProperty "^\s*\zs\w\+\ze\s*="
|
|
14
|
|
15 syntax keyword editorconfigProperty root charset end_of_line indent_style
|
|
16 syntax keyword editorconfigProperty indent_size tab_width max_line_length
|
|
17 syntax keyword editorconfigProperty trim_trailing_whitespace insert_final_newline
|
|
18
|
|
19 hi def link editorconfigProperty dosiniLabel
|
|
20
|
|
21 let b:current_syntax = 'editorconfig'
|