Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/release-notes/rl-0.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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`
5 changes: 5 additions & 0 deletions modules/plugins/languages/html.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down