nvim-treesitter/queries/ini/highlights.scm
Omar Valdez 0b61eb4923
fix(ini): highlight setting value as @string (#7104)
Values are not typed in INI files and are interpreted as literal strings.
2024-08-31 19:14:13 +02:00

16 lines
197 B
Scheme

(section_name
(text) @type) ; consistency with toml
(comment) @comment @spell
[
"["
"]"
] @punctuation.bracket
"=" @operator
(setting
(setting_name) @property)
(setting_value) @string