use all required treesitter parameters

This commit is contained in:
Nick Burt 2024-01-20 18:46:46 -06:00
parent 78c348716c
commit d6009d6e52
1 changed files with 3 additions and 3 deletions

View File

@ -51,14 +51,14 @@ return {
build = ':TSUpdate',
config = function()
vim.defer_fn(function()
-- FIX: Missing required fields in type `TSConfig`
require('nvim-treesitter.configs').setup {
-- Add languages to be installed here that you want installed for treesitter
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash' },
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
auto_install = false,
sync_install = false,
ignore_install = {},
modules = {},
highlight = { enable = true },
indent = { enable = true },
incremental_selection = {