mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-15 09:50:04 -04:00
Add LaTeX/Bibtex parser
This commit is contained in:
parent
5a4d9a69ca
commit
283ee87ed1
1 changed files with 23 additions and 6 deletions
|
|
@ -499,12 +499,29 @@ list.r = {
|
||||||
}
|
}
|
||||||
|
|
||||||
list.beancount = {
|
list.beancount = {
|
||||||
install_info = {
|
install_info = {
|
||||||
url = "https://github.com/polarmutex/tree-sitter-beancount",
|
url = "https://github.com/polarmutex/tree-sitter-beancount",
|
||||||
files = { "src/parser.c" },
|
files = { "src/parser.c" },
|
||||||
branch = "master",
|
branch = "master",
|
||||||
},
|
},
|
||||||
maintainers = { "@polarmutex" }
|
maintainers = { "@polarmutex" },
|
||||||
|
}
|
||||||
|
|
||||||
|
list.latex = {
|
||||||
|
install_info = {
|
||||||
|
url = "https://github.com/latex-lsp/tree-sitter-latex",
|
||||||
|
files = { "src/parser.c" },
|
||||||
|
},
|
||||||
|
filetype = 'tex',
|
||||||
|
used_by = {'cls', 'sty'}
|
||||||
|
}
|
||||||
|
|
||||||
|
list.bibtex = {
|
||||||
|
install_info = {
|
||||||
|
url = "https://github.com/latex-lsp/tree-sitter-bibtex",
|
||||||
|
files = { "src/parser.c" },
|
||||||
|
},
|
||||||
|
filetype = 'bib',
|
||||||
}
|
}
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue