- cleared up some comments and commented out code

- ignored MiniStatusLine diagnostic
This commit is contained in:
Erik Mertens
2025-08-04 16:23:25 +02:00
parent af66b3c56b
commit 89e1542efb
5 changed files with 16 additions and 81 deletions

View File

@@ -111,44 +111,6 @@ return { -- LSP Configuration & Plugins
},
}
})
-- local vue_path = vim.fn.stdpath("data") ..
-- "/mason/packages/vue-language-server/node_modules/@vue/language-server/node_modules/@vue/typescript-plugin"
-- vim.lsp.config('ts_ls', {
-- init_options = {
-- plugins = {
-- {
-- name = "@vue/typescript-plugin",
-- -- location = vim.fn.stdpath("data") .. "/erikcustom/language-tools/packages/typescript-plugin",
-- -- /mason/packages/vue-language-server/node_modules/@vue/language-server/node_modules/@vue/typescript-plugin
-- location = vue_path,
-- languages = { "javascript", "typescript", "vue" },
-- },
-- },
-- settings = {
-- typescript = {
-- tsserver = {
-- useSyntaxServer = false,
-- },
-- inlayHints = {
-- includeInlayParameterNameHints = 'all',
-- includeInlayParameterNameHintsWhenArgumentMatchesName = true,
-- includeInlayFunctionParameterTypeHints = true,
-- includeInlayVariableTypeHints = true,
-- includeInlayVariableTypeHintsWhenTypeMatchesName = true,
-- includeInlayPropertyDeclarationTypeHints = true,
-- includeInlayFunctionLikeReturnTypeHints = true,
-- includeInlayEnumMemberValueHints = true,
-- },
-- },
-- },
--
-- },
-- filetypes = {
-- "javascript",
-- "typescript",
-- "vue",
-- },
-- })
local vue_language_server_path = vim.fn.expand '$MASON/packages' ..
'/vue-language-server' .. '/node_modules/@vue/language-server'
@@ -211,8 +173,5 @@ return { -- LSP Configuration & Plugins
}
}
})
-- local vue_path = vim.fn.stdpath("data") ..
-- "/mason/packages/vue-language-server/node_modules/@vue/language-server/node_modules/@vue/typescript-plugin"
end,
}