dotfiles/mzte-nv/conf/lua/pluginconf/ts-context.lua

24 lines
466 B
Lua
Raw Normal View History

local tsc = require "treesitter-context"
tsc.setup {
patterns = {
zig = {
2022-11-04 22:00:54 +01:00
"block",
"FnProto",
"function",
"TopLevelDecl",
2022-11-04 22:00:54 +01:00
"Statement",
"IfStatement",
"WhileStatement",
"WhileExpr",
"ForStatement",
"ForExpr",
"WhileStatement",
"WhileExpr",
},
2022-10-05 15:48:20 +02:00
html = {
"element",
}
},
}