aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorGaƫtan Lehmann <glehmann@users.noreply.github.com>2024-04-11 23:06:52 +0200
committerGitHub <noreply@github.com>2024-04-11 23:06:52 +0200
commit6ae470fd8fdab6ea391ae1999bcaee0529408a50 (patch)
tree67f48e9af72d46683f444b802258c0ac9f0efa1b /lua
parentfix(textproto): use 'pbtxt' filetype (#6427) (diff)
downloadnvim-treesitter-6ae470fd8fdab6ea391ae1999bcaee0529408a50.tar
nvim-treesitter-6ae470fd8fdab6ea391ae1999bcaee0529408a50.tar.gz
nvim-treesitter-6ae470fd8fdab6ea391ae1999bcaee0529408a50.tar.bz2
nvim-treesitter-6ae470fd8fdab6ea391ae1999bcaee0529408a50.tar.lz
nvim-treesitter-6ae470fd8fdab6ea391ae1999bcaee0529408a50.tar.xz
nvim-treesitter-6ae470fd8fdab6ea391ae1999bcaee0529408a50.tar.zst
nvim-treesitter-6ae470fd8fdab6ea391ae1999bcaee0529408a50.zip
feat: add earthfile parser (#6395)
--------- 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 255efe570..39c3b1875 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -443,6 +443,14 @@ list.dtd = {
maintainers = { "@ObserverOfTime" },
}
+list.earthfile = {
+ install_info = {
+ url = "https://github.com/glehmann/tree-sitter-earthfile",
+ files = { "src/parser.c", "src/scanner.c" },
+ },
+ maintainers = { "@glehmann" },
+}
+
list.ebnf = {
install_info = {
url = "https://github.com/RubixDev/ebnf",