mirror of
https://github.com/kristoferssolo/tree-sitter-bruno.git
synced 2025-10-21 20:10:34 +00:00
12 lines
274 B
Lua
12 lines
274 B
Lua
vim.filetype.add({
|
|
extension = { bru = "bruno" },
|
|
})
|
|
|
|
require("nvim-treesitter.parsers").get_parser_configs().bruno = {
|
|
install_info = {
|
|
url = "https://github.com/kristoferssolo/tree-sitter-bruno",
|
|
files = { "src/parser.c", "src/scanner.c" },
|
|
branch = "main",
|
|
},
|
|
}
|