mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-05 15:19:15 +01:00
23 lines
466 B
Lua
23 lines
466 B
Lua
local tsc = require "treesitter-context"
|
|
tsc.setup {
|
|
patterns = {
|
|
zig = {
|
|
"block",
|
|
"FnProto",
|
|
"function",
|
|
"TopLevelDecl",
|
|
"Statement",
|
|
"IfStatement",
|
|
"WhileStatement",
|
|
"WhileExpr",
|
|
"ForStatement",
|
|
"ForExpr",
|
|
"WhileStatement",
|
|
"WhileExpr",
|
|
},
|
|
|
|
html = {
|
|
"element",
|
|
}
|
|
},
|
|
}
|