arafatamim / emmet-ls

Emmet support based on LSP.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

emmet-ls

Emmet support based on LSP.
Started as coc-emmet replacement for completion-nvim. Should work with any lsp client but not tested.

alt

Install

npm install -g emmet-ls

Configuration

Example Configuration

With nvim-lspconfig:

local lspconfig = require('lspconfig')
local configs = require('lspconfig/configs')
local capabilities = vim.lsp.protocol.make_client_capabilities()
capabilities.textDocument.completion.completionItem.snippetSupport = true

lspconfig.emmet_ls.setup({
    -- on_attach = on_attach,
    capabilities = capabilities,
    filetypes = { 'html', 'typescriptreact', 'javascriptreact', 'css', 'sass', 'scss', 'less' },
    init_options = {
      html = {
        options = {
          -- For possible options, see: https://github.com/emmetio/emmet/blob/master/src/config.ts#L79-L267
          ["bem.enabled"] = true,
        },
      },
    }
})
Supported Filetypes
  • html, typescriptreact, javascriptreact, css, sass, scss and less filetypes are fully supported.
  • Any other filetype is treated as html.

About

Emmet support based on LSP.

License:MIT License


Languages

Language:JavaScript 100.0%