feat(orca): add support for ORCA input files

ORCA is a software package to perform quantum chemistry simulations
This commit is contained in:
Kalman Szenes 2025-08-10 11:41:27 +02:00
parent 42fc28ba91
commit f0f65a07d5
4 changed files with 177 additions and 0 deletions

View file

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