aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorTeddytrombone <github@tmk-stgeorgen.at>2023-10-24 09:48:33 +0200
committerGitHub <noreply@github.com>2023-10-24 07:48:33 +0000
commit16af5ef490ff37407cc4241d7b8b8798d5b3a726 (patch)
tree76a164dc751f46e5f5cb38a724ce55957b5786e2 /lua
parentUpdate parsers: liquidsoap, wing (#5568) (diff)
downloadnvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar
nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar.gz
nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar.bz2
nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar.lz
nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar.xz
nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar.zst
nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.zip
feat(typoscript) Added parser and queries for TypoScript (#5564)
* Added configuration for TypoScript * Removed duplicated code; Applied folding suggestion * Applied suggestions * Update queries/typoscript/highlights.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> --------- Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 3e4e39006..c9ba50b37 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -1874,6 +1874,14 @@ list.typescript = {
maintainers = { "@steelsojka" },
}
+list.typoscript = {
+ install_info = {
+ url = "https://github.com/Teddytrombone/tree-sitter-typoscript",
+ files = { "src/parser.c" },
+ },
+ maintainers = { "@Teddytrombone" },
+}
+
list.ungrammar = {
install_info = {
url = "https://github.com/Philipp-M/tree-sitter-ungrammar",