From 359507e0dd5b513645283afde8ab2e30fe0f97bb Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 13 May 2025 23:01:00 +0200 Subject: [PATCH] nvim/lua/user/plugins/lang/html.lua: add html lsp --- nvim/lua/user/plugins/lang/html.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nvim/lua/user/plugins/lang/html.lua b/nvim/lua/user/plugins/lang/html.lua index 1fe974c..f3580c8 100644 --- a/nvim/lua/user/plugins/lang/html.lua +++ b/nvim/lua/user/plugins/lang/html.lua @@ -5,6 +5,16 @@ return { ensure_installed = { "html" } } }, + { + "neovim/nvim-lspconfig", + opts = { + servers = { + html = { + filetypes = {"html", "templ", "blade" } + } + } + } + }, { "windwp/nvim-ts-autotag", optional = true,