From 0fd19f4f47d0f8741dbebe1f6f0fa984a22c756d Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Thu, 14 Nov 2024 10:58:45 +0200 Subject: [PATCH] feat(lsp): make sure tailwindcss is attached to these types --- config/plugins/lsp.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config/plugins/lsp.nix b/config/plugins/lsp.nix index 32b8647..3dcfc10 100644 --- a/config/plugins/lsp.nix +++ b/config/plugins/lsp.nix @@ -19,7 +19,10 @@ settings.cargo.loadOutDirsFromCheck = true; }; taplo.enable = true; - tailwindcss.enable = true; + tailwindcss = { + enable = true; + filetypes = ["html" "markdown" "rust" "templ"]; + }; templ.enable = true; yamlls.enable = true; }; -- 2.44.1