1

Refresh generated neovim config

This commit is contained in:
2024-07-14 21:12:36 +02:00
parent f215ce2ab5
commit 00464e0e65
731 changed files with 6780 additions and 31110 deletions

View File

@ -24,14 +24,14 @@
((for_statement
body: (_) @_body) @indent.begin
(#not-has-type? @_body compound_statement))
(#not-kind-eq? @_body "compound_statement"))
(while_statement
condition: (_) @indent.begin)
((while_statement
body: (_) @_body) @indent.begin
(#not-has-type? @_body compound_statement))
(#not-kind-eq? @_body "compound_statement"))
((if_statement)
.
@ -45,7 +45,7 @@
(if_statement
consequence: (_
";" @indent.end) @_consequence
(#not-has-type? @_consequence compound_statement)
(#not-kind-eq? @_consequence "compound_statement")
alternative: (else_clause
"else" @indent.branch
[