mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
24 lines
650 B
Lua
24 lines
650 B
Lua
return {
|
|
cmd = { "emmet-ls", "-c", "--stdio" },
|
|
-- add file type support
|
|
-- filetypes = {
|
|
-- "javascript",
|
|
-- "javascriptreact",
|
|
-- "javascript.jsx",
|
|
-- "typescript",
|
|
-- "typescriptreact",
|
|
-- "typescript.tsx",
|
|
-- "astro",
|
|
-- "css",
|
|
-- "eruby",
|
|
-- "html",
|
|
-- "htmldjango",
|
|
-- "less",
|
|
-- "pug",
|
|
-- "sass",
|
|
-- "scss",
|
|
-- "svelte",
|
|
-- "vue" -- },
|
|
-- add dynamic root dir support
|
|
root_dir = require("lspconfig.util").root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git"),
|
|
}
|