summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorPasi Bergman <[email protected]>2021-07-11 16:37:59 +0300
committerGitHub <[email protected]>2021-07-11 09:37:59 -0400
commita7fb9115861a4aef65b47d470574ce0ef45c4502 (patch)
treec78106a9a52898a1ec67f5fcd8efe3e542d9d6fe /lua
parent26c5c74303b1c7c05cbd3f64b3946b81440b6539 (diff)
Enable emmet-ls on vue filetype (#875)
Diffstat (limited to 'lua')
-rw-r--r--lua/lsp/emmet-ls.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lsp/emmet-ls.lua b/lua/lsp/emmet-ls.lua
index a671ff88..e38747ac 100644
--- a/lua/lsp/emmet-ls.lua
+++ b/lua/lsp/emmet-ls.lua
@@ -10,7 +10,7 @@ capabilities.textDocument.completion.completionItem.snippetSupport = true
configs.emmet_ls = {
default_config = {
cmd = { "emmet-ls", "--stdio" },
- filetypes = { "html", "css", "javascript", "typescript" },
+ filetypes = { "html", "css", "javascript", "typescript", "vue" },
root_dir = function()
return vim.loop.cwd()
end,