From 8b143033ee9c72074664f0b2d74c5e9ed5cd1262 Mon Sep 17 00:00:00 2001 From: "Gustavo L de Mello (Guz)" Date: Thu, 5 Dec 2024 19:28:11 -0300 Subject: [PATCH] feat: add deno and tailwincss 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 7426ca2..f7362af 100644 --- a/lua/dot013/plugins/lsp.lua +++ b/lua/dot013/plugins/lsp.lua @@ -1,4 +1,5 @@ local lsps = { + ["denols"] = {}, ["lua_ls"] = { on_init = function(client) if client.workspace_folders then @@ -29,6 +30,7 @@ local lsps = { }, ["gopls"] = {}, ["htmx"] = {}, + ["tailwindcss"] = {}, ["templ"] = {}, ["rust_analyzer"] = {}, } diff --git a/neovim.nix b/neovim.nix index bfd41f9..c997bb7 100644 --- a/neovim.nix +++ b/neovim.nix @@ -34,9 +34,11 @@ ]; languageServers = with pkgs; [ + deno gopls htmx-lsp lua-language-server + tailwindcss-language-server templ rust-analyzer ];