summaryrefslogtreecommitdiff
path: root/lua/lsp/vue-ls.lua
diff options
context:
space:
mode:
authorrebuilt <[email protected]>2021-04-27 07:00:21 +0200
committerGitHub <[email protected]>2021-04-27 01:00:21 -0400
commitf4f7a96496076e50bc462ffc356c1ec855e61d24 (patch)
tree3bbdf91e3e7e1dc37a2add1e7f1d76a64ea0c437 /lua/lsp/vue-ls.lua
parent1eb8339a477f194813729c3711a11cd5e23cfccd (diff)
adds vue language server support (#303)
Diffstat (limited to 'lua/lsp/vue-ls.lua')
-rw-r--r--lua/lsp/vue-ls.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/lsp/vue-ls.lua b/lua/lsp/vue-ls.lua
new file mode 100644
index 00000000..0f258880
--- /dev/null
+++ b/lua/lsp/vue-ls.lua
@@ -0,0 +1,5 @@
+
+local lsp = require'lspconfig'
+lsp.vuels.setup{
+root_dir = lsp.util.root_pattern(".git",".")
+}