aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 0f305be86..8682d48eb 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -1041,6 +1041,15 @@ list.wgsl = {
filetype = "wgsl",
}
+list.m68k = {
+ install_info = {
+ url = "https://github.com/grahambates/tree-sitter-m68k",
+ files = { "src/parser.c" },
+ },
+ maintainers = { "@grahambates" },
+ filetype = "asm68k",
+}
+
local M = {
list = list,
filetype_to_parsername = filetype_to_parsername,