From 9ddc7f6bf07a464d32440e6e0bf3d8e719da837a Mon Sep 17 00:00:00 2001 From: Mohamad Alamin Yassin Date: Mon, 8 Jan 2024 14:22:02 +0300 Subject: [PATCH] Add Missing Fields to Treesitter Config to Resolve Warnings This commit introduces three additional fields - `sync_install`, `ignore_install`, and `modules` - to the Treesitter configuration. This update is aimed at resolving warnings that were previously displayed, potentially causing confusion or frustration for new users of Neovim. By explicitly defining these fields, the configuration aligns better with the latest `nvim-treesitter` requirements. --- init.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/init.lua b/init.lua index 7e68de6..7fc6ca4 100644 --- a/init.lua +++ b/init.lua @@ -427,6 +427,17 @@ vim.defer_fn(function() -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!) auto_install = false, + -- Install languages synchronously (only applied to `ensure_installed`) + sync_install = false, + -- List of parsers to ignore installing + ignore_install = {}, + modules = { + -- You can specify additional Treesitter modules here + -- For example: + -- playground = { + -- enable = true, + -- }, + }, highlight = { enable = true }, indent = { enable = true },