diff options
author | Damjan 9000 <damjan.9000@gmail.com> | 2024-01-08 19:49:33 +0100 |
---|---|---|
committer | Damjan 9000 <damjan.9000@gmail.com> | 2024-01-08 19:49:33 +0100 |
commit | d81c0326b43f7c920cf263c32a89717983a60990 (patch) | |
tree | b392cd1ae9e589dd839e5a60d8f2b53f4027e494 | |
parent | 251779f22d07b47d76f3d40f159d54ef635f0949 (diff) | |
parent | c11afa2f90a9e5b995ef51c8f4b37dfcdc1a7390 (diff) |
Merge 'upstream/master' Add Missing Fields to Treesitter Config to Resolve Warnings
-rw-r--r-- | lua/treesitter-setup.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lua/treesitter-setup.lua b/lua/treesitter-setup.lua index 78c84e4..0a9e63e 100644 --- a/lua/treesitter-setup.lua +++ b/lua/treesitter-setup.lua @@ -8,7 +8,14 @@ vim.defer_fn(function() -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!) auto_install = false, - + -- 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 = {}, + -- You can specify additional Treesitter modules here: -- For example: -- playground = {--enable = true,-- }, + modules = {}, highlight = { enable = true }, indent = { enable = true }, incremental_selection = { |