aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lua/mason-lspconfig/lsp/vue_ls.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/lua/mason-lspconfig/lsp/vue_ls.lua b/lua/mason-lspconfig/lsp/vue_ls.lua
deleted file mode 100644
index eb21dc6..0000000
--- a/lua/mason-lspconfig/lsp/vue_ls.lua
+++ /dev/null
@@ -1,11 +0,0 @@
-return {
- before_init = function(_, config)
- -- This replaces nvim-lspconfig's before_init by also looking for typescript that is bundled with the package
- -- via Mason
- local typescript = require "mason-lspconfig.typescript"
- local install_dir = vim.fn.expand "$MASON/packages/vue-language-server"
-
- config.init_options.typescript.serverPath = typescript.resolve_tsserver(install_dir, config.root_dir)
- config.init_options.typescript.tsdk = typescript.resolve_tsdk(install_dir, config.root_dir)
- end,
-}