From c2156cee5bd314b64222cfceca4fd5b803e49940 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Tue, 27 Feb 2024 09:42:00 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(nvim):=20add=20typescript-erro?= =?UTF-8?q?r-translator=20plugin=20into=20the=20ts=20extra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit human readable ts errors --- .../lua/plugins/extras/lang/web/typescript-extended.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/extras/lang/web/typescript-extended.lua b/.config/nvim/lua/plugins/extras/lang/web/typescript-extended.lua index 8c481e17..06b7724c 100644 --- a/.config/nvim/lua/plugins/extras/lang/web/typescript-extended.lua +++ b/.config/nvim/lua/plugins/extras/lang/web/typescript-extended.lua @@ -124,8 +124,9 @@ return { { "dmmulroy/tsc.nvim", opts = { + auto_start_watch_mode = false, flags = { - watch = true, + watch = false, }, }, keys = { @@ -136,6 +137,11 @@ return { "typescriptreact", }, }, + { + "dmmulroy/ts-error-translator.nvim", + ft = { "typescript", "typescriptreact" }, + opts = {}, + }, { "nvim-neotest/neotest", optional = true,