diff options
| author | ObserverOfTime <chronobserver@disroot.org> | 2022-10-21 19:48:15 +0300 |
|---|---|---|
| committer | Christian Clason <christian.clason@uni-due.de> | 2022-11-20 12:24:55 +0100 |
| commit | 126a271363ff5307c943e89ff27d0a13e0260f8d (patch) | |
| tree | f1479d9b7008c7ff528459d6df8767cc5e92a5fe /lua | |
| parent | Add Spelling to hcl comments (diff) | |
| download | nvim-treesitter-126a271363ff5307c943e89ff27d0a13e0260f8d.tar nvim-treesitter-126a271363ff5307c943e89ff27d0a13e0260f8d.tar.gz nvim-treesitter-126a271363ff5307c943e89ff27d0a13e0260f8d.tar.bz2 nvim-treesitter-126a271363ff5307c943e89ff27d0a13e0260f8d.tar.lz nvim-treesitter-126a271363ff5307c943e89ff27d0a13e0260f8d.tar.xz nvim-treesitter-126a271363ff5307c943e89ff27d0a13e0260f8d.tar.zst nvim-treesitter-126a271363ff5307c943e89ff27d0a13e0260f8d.zip | |
feat: add mermaid
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 0ba47880e..0c22f27b2 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1314,6 +1314,14 @@ list.jq = { }, } +list.mermaid = { + install_info = { + url = "https://github.com/monaqa/tree-sitter-mermaid", + files = { "src/parser.c" }, + }, + experimental = true, +} + local M = { list = list, filetype_to_parsername = filetype_to_parsername, |
