mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
18 lines
463 B
Scheme
18 lines
463 B
Scheme
|
;; extends
|
||
|
|
||
|
(binding
|
||
|
attrpath: (attrpath (identifier) @_path)
|
||
|
expression: [
|
||
|
(string_expression (string_fragment) @lua)
|
||
|
(indented_string_expression (string_fragment) @lua)
|
||
|
]
|
||
|
(#match? @_path "^extraConfigLua(Pre|Post)?$"))
|
||
|
|
||
|
(binding
|
||
|
attrpath: (attrpath (identifier) @_path)
|
||
|
expression: [
|
||
|
(string_expression (string_fragment) @vim)
|
||
|
(indented_string_expression (string_fragment) @vim)
|
||
|
]
|
||
|
(#match? @_path "^extraConfigVim(Pre|Post)?$"))
|