From f5ed798e466f09fbcbf2192c87c5461c50561b52 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Mon, 18 May 2026 22:14:51 +0200 Subject: [PATCH] nvim/lua/user/plugins/lang/typescript.lua: add tsx treesitter parser --- nvim/lua/user/plugins/lang/typescript.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/user/plugins/lang/typescript.lua b/nvim/lua/user/plugins/lang/typescript.lua index 089b432..9cfef38 100644 --- a/nvim/lua/user/plugins/lang/typescript.lua +++ b/nvim/lua/user/plugins/lang/typescript.lua @@ -23,7 +23,7 @@ return { { "nvim-treesitter/nvim-treesitter", opts = { - install = { "typescript" } + install = { "typescript", "tsx" } } }, {