From 2b12dc39ef8ce27dad074191e93a95dbc6d92d3c Mon Sep 17 00:00:00 2001 From: Guilherme de Andrade Date: Mon, 16 Jan 2023 22:40:46 +0000 Subject: [PATCH] Add `tsx` to `ensure_installed` array Closes #136 --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index ac291dad..855cbca6 100644 --- a/init.lua +++ b/init.lua @@ -221,7 +221,7 @@ vim.keymap.set('n', 'sd', require('telescope.builtin').diagnostics, { de -- See `:help nvim-treesitter` 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', 'typescript', 'help', 'vim' }, + ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'tsx', 'help', 'vim' }, highlight = { enable = true }, indent = { enable = true, disable = { 'python' } },