From 52320e2cf7b75900dc8cb7ca1ddd590febd079b1 Mon Sep 17 00:00:00 2001 From: George Iyalomhe <166663527+georgeiyalomhe@users.noreply.github.com> Date: Tue, 23 Dec 2025 10:15:43 +0100 Subject: [PATCH] treesitter main module setting fix --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index b98ffc6198a..2fecf170f98 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' },