mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -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 = {
|
||||
install_info = {
|
||||
url = "https://github.com/polarmutex/tree-sitter-beancount",
|
||||
files = { "src/parser.c" },
|
||||
branch = "master",
|
||||
},
|
||||
maintainers = { "@polarmutex" }
|
||||
install_info = {
|
||||
url = "https://github.com/polarmutex/tree-sitter-beancount",
|
||||
files = { "src/parser.c" },
|
||||
branch = "master",
|
||||
},
|
||||
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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue