diff options
| author | Amaan Qureshi <amaanq12@gmail.com> | 2023-08-21 04:29:38 -0400 |
|---|---|---|
| committer | Amaan Qureshi <amaanq12@gmail.com> | 2023-08-21 05:04:42 -0400 |
| commit | 7c935d6bd5ecb36e7c6cf6678e1eaa38b85111f3 (patch) | |
| tree | 8282175c347fbb8e42b8b19b544792eb802d5bb0 /lua | |
| parent | Update parsers: css, glsl, jsdoc, scala, sql, wing (diff) | |
| download | nvim-treesitter-7c935d6bd5ecb36e7c6cf6678e1eaa38b85111f3.tar nvim-treesitter-7c935d6bd5ecb36e7c6cf6678e1eaa38b85111f3.tar.gz nvim-treesitter-7c935d6bd5ecb36e7c6cf6678e1eaa38b85111f3.tar.bz2 nvim-treesitter-7c935d6bd5ecb36e7c6cf6678e1eaa38b85111f3.tar.lz nvim-treesitter-7c935d6bd5ecb36e7c6cf6678e1eaa38b85111f3.tar.xz nvim-treesitter-7c935d6bd5ecb36e7c6cf6678e1eaa38b85111f3.tar.zst nvim-treesitter-7c935d6bd5ecb36e7c6cf6678e1eaa38b85111f3.zip | |
feat: add Forth
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 a4150c8eb..bd956ea9d 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -487,6 +487,14 @@ list.foam = { experimental = true, } +list.forth = { + install_info = { + url = "https://github.com/AlexanderBrevig/tree-sitter-forth", + files = { "src/parser.c" }, + }, + maintainers = { "@amaanq" }, +} + list.fortran = { install_info = { url = "https://github.com/stadelmanma/tree-sitter-fortran", |
