format: parsers.lua file and ORCA queries

This commit is contained in:
Kalman Szenes 2025-08-10 11:45:27 +02:00
parent f0f65a07d5
commit 661ba3fec8
4 changed files with 244 additions and 99 deletions

View file

@ -1622,19 +1622,19 @@ list.odin = {
}
-- Define filetype for ORCA input files
vim.filetype.add({
extension = {
inp = "inp",
},
})
vim.filetype.add {
extension = {
inp = "inp",
},
}
list.orca = {
install_info = {
url = "https://github.com/kszenes/tree-sitter-orca.git",
files = { "src/parser.c" }
files = { "src/parser.c" },
},
filetype = "inp",
maintainers = { "@kszenes" }
maintainers = { "@kszenes" },
}
list.pascal = {