mirror of
https://github.com/chenasraf/nvim-treesitter.git
synced 2026-05-17 17:38:02 +00:00
13 lines
246 B
Lua
13 lines
246 B
Lua
local Runner = require('tests.indent.common').Runner
|
|
|
|
local run = Runner:new(it, 'tests/indent/typst', {
|
|
tabstop = 4,
|
|
shiftwidth = 4,
|
|
softtabstop = 4,
|
|
expandtab = false,
|
|
})
|
|
|
|
describe('indent typst:', function()
|
|
run:whole_file('.')
|
|
end)
|