Add Missing Fields to Treesitter Config to Resolve Warnings Description: 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, ensuring a smoother and more intuitive setup experience.

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.
This commit is contained in:
Mohamad Alamin Yassin 2024-01-08 14:38:11 +03:00 committed by GitHub
parent 69ea1eff1b
commit 3b7c1e883e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -427,9 +427,9 @@ 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,
sync_install = false,
-- List of parsers to ignore installing
ignore_install = {},
ignore_install = {},
-- You can specify additional Treesitter modules here: -- For example: -- playground = {--enable = true,-- },
modules = {},
highlight = { enable = true },