mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-06 15:49:19 +01:00
12 lines
185 B
Lua
12 lines
185 B
Lua
local tsc = require "treesitter-context"
|
|
tsc.setup {
|
|
patterns = {
|
|
zig = {
|
|
"TopLevelDecl",
|
|
},
|
|
|
|
html = {
|
|
"element",
|
|
}
|
|
},
|
|
}
|