Skip to content

Commit

Permalink
feat(html-css): add emmet_ls to html-css supprt syntax like li * 5 (#…
Browse files Browse the repository at this point in the history
…347)

* feat(pack): add emmet_ls to html-css supprt syntax like `li * 5`

* feat(pack): update html-css readme.
  • Loading branch information
chaozwn authored Jul 2, 2023
1 parent a95da98 commit 247d1f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/astrocommunity/pack/html-css/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
This plugin pack is meant as a base that is being imported by more specific web development plugin packs. It does the following:

- Adds `html` and `css` Treesitter parsers
- Adds `html` and `css` language server
- Adds `html`, `css` and `emmet_ls` language server
2 changes: 1 addition & 1 deletion lua/astrocommunity/pack/html-css/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ return {
{
"williamboman/mason-lspconfig.nvim",
opts = function(_, opts)
opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, { "html", "cssls" })
opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, { "html", "cssls", "emmet_ls" })
end,
},
}

0 comments on commit 247d1f2

Please sign in to comment.