From ddaf6ffe96bad801a861998c4c2b01e373f10672 Mon Sep 17 00:00:00 2001 From: MrPro Date: Mon, 12 Jan 2026 10:14:40 +0530 Subject: [PATCH] feat: add backward compatibility for 'configs' module name Users with existing configs using will now receive a proper error message with migration guidance instead of a cryptic module not found error. --- lua/nvim-treesitter/configs.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 lua/nvim-treesitter/configs.lua diff --git a/lua/nvim-treesitter/configs.lua b/lua/nvim-treesitter/configs.lua new file mode 100644 index 000000000..864d2d97c --- /dev/null +++ b/lua/nvim-treesitter/configs.lua @@ -0,0 +1,3 @@ +-- Backward compatibility module +-- TODO: Remove this file in a future version when all users migrate to the new module name +return require('nvim-treesitter.config')