Skip to content

tree-sitter-grammars/tree-sitter-test

Repository files navigation

tree-sitter-test

CI discord matrix

A tree-sitter parser for corpus test files.

References

Usage

This can be used as a standalone plugin in Neovim, without nvim-treesitter.
Here's how you can install it using lazy.nvim:

{
    "tree-sitter-grammars/tree-sitter-test",
    -- compile on your own on Windows
    build = "make parser/test.so",
    ft = "test",
    init = function()
        -- toggle dynamic language injection
        vim.g.tstest_dynamic_injection = false
        -- toggle full-width rules for test separators
        vim.g.tstest_fullwidth_rules = false
        -- set the highlight group of the rules
        vim.g.tstest_rule_hlgroup = "FoldColumn"
    end
}