From 9b7bda28db0200b628e5f6eb7021a5a717db2e73 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Dec 2025 19:59:18 +0100 Subject: Initial grammar --- lua/tree-sitter-wmap.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lua/tree-sitter-wmap.lua (limited to 'lua') diff --git a/lua/tree-sitter-wmap.lua b/lua/tree-sitter-wmap.lua new file mode 100644 index 0000000..7c4a53d --- /dev/null +++ b/lua/tree-sitter-wmap.lua @@ -0,0 +1,21 @@ +local M = {} + +function M.setup() + local config_file_path = debug.getinfo(1).source:sub(2) + local plugin_dir = vim.fn.fnamemodify(config_file_path, ':h:h') + local parser_config = require 'nvim-treesitter.parsers'.get_parser_configs() + parser_config.wmap = { + install_info = { + url = plugin_dir, + files = {'src/parser.c'}, + branch = 'main' + } + } + vim.filetype.add({ + extension = { + wmap = 'wmap', + } + }) +end + +return M -- cgit