blob: 960481648486f9234fc0c67f0f705fc6906eb4fc (
plain)
1
2
3
4
5
6
7
8
9
10
|
if require("lv-utils").check_lsp_client_active "vuels" then
return
end
-- Vue language server configuration (vetur)
require("lspconfig").vuels.setup {
cmd = { DATA_PATH .. "/lspinstall/vue/node_modules/.bin/vls", "--stdio" },
on_attach = require("lsp").common_on_attach,
root_dir = require("lspconfig").util.root_pattern(".git", "vue.config.js", "package.json", "yarn.lock"),
}
|