From 88bfae10e64775b1b29eac6789d2aca9728f29fe Mon Sep 17 00:00:00 2001 From: Valyn Tyler <115489989+ValynTyler@users.noreply.github.com> Date: Mon, 3 Nov 2025 19:47:39 +0200 Subject: [PATCH 1/2] feat: add html.servers.emmet-ls --- modules/plugins/languages/html.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/plugins/languages/html.nix b/modules/plugins/languages/html.nix index bcc6b8421..7c8c83a3a 100644 --- a/modules/plugins/languages/html.nix +++ b/modules/plugins/languages/html.nix @@ -23,6 +23,11 @@ filetypes = ["html" "shtml" "htm"]; root_markers = ["index.html" ".git"]; }; + emmet-ls = { + cmd = [(getExe pkgs.emmet-ls) "--stdio"]; + filetypes = ["html" "shtml" "htm"]; + root_markers = ["index.html" ".git"]; + }; }; defaultFormat = "superhtml"; From 6ccf85f5ae48088e32366a9dfe4d08763a58d1c8 Mon Sep 17 00:00:00 2001 From: Valyn Tyler <115489989+ValynTyler@users.noreply.github.com> Date: Sun, 9 Nov 2025 17:03:16 +0100 Subject: [PATCH 2/2] feat: update changelog --- docs/release-notes/rl-0.8.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/rl-0.8.md b/docs/release-notes/rl-0.8.md index a779037e5..f47ea873e 100644 --- a/docs/release-notes/rl-0.8.md +++ b/docs/release-notes/rl-0.8.md @@ -72,7 +72,6 @@ - Add [](#opt-vim.lsp.lightbulb.autocmd.enable) for manually managing the previously managed lightbulb autocommand. - - A warning will occur if [](#opt-vim.lsp.lightbulb.autocmd.enable) and `vim.lsp.lightbulb.setupOpts.autocmd.enabled` are both set at the same time. Pick only one. @@ -584,3 +583,9 @@ [mellow.nvim]: https://github.com/mellow-theme/mellow.nvim - Add [mellow.nvim] plugin for vim and lualine theme support + +[valyntyler](https://github.com/valyntyler): + +[emmet-ls]: https://github.com/aca/emmet-ls + +- Add [emmet-ls] to `html.lsp.servers`