From c7804293a084ed2cdc9d54eca8b4eb5881f3b959 Mon Sep 17 00:00:00 2001 From: "Gustavo L de Mello (Guz)" Date: Thu, 5 Dec 2024 19:27:38 -0300 Subject: [PATCH] feat: add htmx and templ lsp's --- lua/dot013/plugins/lsp.lua | 2 ++ neovim.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/lua/dot013/plugins/lsp.lua b/lua/dot013/plugins/lsp.lua index d283ff1..7426ca2 100644 --- a/lua/dot013/plugins/lsp.lua +++ b/lua/dot013/plugins/lsp.lua @@ -28,6 +28,8 @@ local lsps = { }, }, ["gopls"] = {}, + ["htmx"] = {}, + ["templ"] = {}, ["rust_analyzer"] = {}, } diff --git a/neovim.nix b/neovim.nix index 853670e..bfd41f9 100644 --- a/neovim.nix +++ b/neovim.nix @@ -35,7 +35,9 @@ languageServers = with pkgs; [ gopls + htmx-lsp lua-language-server + templ rust-analyzer ];