summaryrefslogtreecommitdiff
path: root/lua/lsp/templates.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-10-07 17:47:53 +0200
committerGitHub <[email protected]>2021-10-07 17:47:53 +0200
commitc0e3c8d43ae6ca011e4036329ae31115957d1394 (patch)
treef989edf2203b225d407dd53b7bef95a589d6e123 /lua/lsp/templates.lua
parent0ad60e90a9b0dd557df10f73bec344e88549a9d7 (diff)
feat(lsp): handle user configuration in setup() (#1707)
Diffstat (limited to 'lua/lsp/templates.lua')
-rw-r--r--lua/lsp/templates.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lsp/templates.lua b/lua/lsp/templates.lua
index 6ded636d..fbbc37f6 100644
--- a/lua/lsp/templates.lua
+++ b/lua/lsp/templates.lua
@@ -23,7 +23,7 @@ function M.is_ignored(server_name, filetypes)
filetypes = filetypes or get_supported_filetypes(server_name)
if vim.tbl_contains(filetypes, "javascript") then
- if server_name == "tsserver" or server_name == "tailwindcss" then
+ if server_name == "tsserver" then
return false
else
return true