From 17dd4438d3d7994fc836dfa308721f19ff4296c7 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Mon, 27 Nov 2023 13:45:25 +0100 Subject: [PATCH] nvim: fix tsserver --- home/config/nvim/plugins/lsp.fnl | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/home/config/nvim/plugins/lsp.fnl b/home/config/nvim/plugins/lsp.fnl index ed38041..0af66b3 100644 --- a/home/config/nvim/plugins/lsp.fnl +++ b/home/config/nvim/plugins/lsp.fnl @@ -70,10 +70,7 @@ :includeInlayPropertyDeclarationTypeHints true :includeInlayFunctionLikeReturnTypeHints true :includeInlayEnumMemberValueHints true}] - (lsp.tsserver.setup (->> {:cmd [:typescript-language-server - :--stdio - :--tsserver-path - :tsserver] + (lsp.tsserver.setup (->> {:cmd [:typescript-language-server :--stdio] :settings {:typescript {:inlayHints inlay-hints} :javascript {:inlayHints inlay-hints}}} (vim.tbl_extend :force default-config))))