From 2d541c41402abd53aa601e9a10e1dafea42b975c Mon Sep 17 00:00:00 2001 From: Advin Suryavanshi <78780005+advinsuryavanshi@users.noreply.github.com> Date: Tue, 27 Jan 2026 19:47:34 +0530 Subject: [PATCH] fix: update main module reference for nvim-treesitter (#1832) configs -> config in init.lua --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index b98ffc61..2fecf170 100644 --- a/init.lua +++ b/init.lua @@ -941,7 +941,7 @@ require('lazy').setup({ { -- Highlight, edit, and navigate code 'nvim-treesitter/nvim-treesitter', build = ':TSUpdate', - main = 'nvim-treesitter.configs', -- Sets main module to use for opts + main = 'nvim-treesitter.config', -- Sets main module to use for opts -- [[ Configure Treesitter ]] See `:help nvim-treesitter` opts = { ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' },