blob: 471f21f15d00faef3feea1587ee880add6d0c2f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'emmet-ls', '--stdio' },
filetypes = { 'html', 'css' },
root_dir = util.find_git_ancestor,
},
docs = {
description = [[
https://github.com/aca/emmet-ls
Package can be installed via `npm`:
```sh
npm install -g emmet-ls
```
]],
default_config = {
root_dir = 'git root',
},
},
}
|