aboutsummaryrefslogtreecommitdiff
path: root/lua/treesitter-setup.lua
diff options
context:
space:
mode:
authorDamjan 9000 <damjan.9000@gmail.com>2024-01-08 19:49:33 +0100
committerDamjan 9000 <damjan.9000@gmail.com>2024-01-08 19:49:33 +0100
commitd81c0326b43f7c920cf263c32a89717983a60990 (patch)
treeb392cd1ae9e589dd839e5a60d8f2b53f4027e494 /lua/treesitter-setup.lua
parent251779f22d07b47d76f3d40f159d54ef635f0949 (diff)
parentc11afa2f90a9e5b995ef51c8f4b37dfcdc1a7390 (diff)
Merge 'upstream/master' Add Missing Fields to Treesitter Config to Resolve Warnings
Diffstat (limited to 'lua/treesitter-setup.lua')
-rw-r--r--lua/treesitter-setup.lua9
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 = {