Compare commits
10 commits
4b56685efc
...
45444ef947
Author | SHA1 | Date | |
---|---|---|---|
45444ef947 | |||
e8db509c87 | |||
26c7c6038d | |||
d32ca1276d | |||
ca1a92e376 | |||
ce788d1acd | |||
f3e795d388 | |||
472a1b8cea | |||
6252e08783 | |||
8eb417638a |
2 changed files with 6 additions and 15 deletions
|
@ -1,6 +1,6 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"williamboman/mason.nvim",
|
"mason-org/mason.nvim",
|
||||||
|
|
||||||
config = function()
|
config = function()
|
||||||
require("mason").setup()
|
require("mason").setup()
|
||||||
|
@ -13,7 +13,8 @@ return {
|
||||||
local mason_lspconfig = require("mason-lspconfig")
|
local mason_lspconfig = require("mason-lspconfig")
|
||||||
|
|
||||||
mason_lspconfig.setup({
|
mason_lspconfig.setup({
|
||||||
ensure_installed = { "clangd", "lua_ls", "matlab_ls", "mesonlsp", "texlab", "ts_ls", "volar", "zls" }
|
ensure_installed = { "clangd", "lua_ls", "matlab_ls", "mesonlsp", "texlab", "ts_ls", "volar", "zls" },
|
||||||
|
automatic_enable = true
|
||||||
})
|
})
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -3,32 +3,22 @@ return {
|
||||||
|
|
||||||
config = function()
|
config = function()
|
||||||
local lspconfig = require("lspconfig")
|
local lspconfig = require("lspconfig")
|
||||||
local mason_registry = require("mason-registry")
|
|
||||||
local volar_path = mason_registry.get_package("vue-language-server"):get_install_path() .. "/node_modules/@vue/language-server"
|
|
||||||
|
|
||||||
lspconfig.clangd.setup({
|
vim.lsp.config("clangd", {
|
||||||
cmd = { "clangd", "-header-insertion=never" },
|
cmd = { "clangd", "-header-insertion=never" },
|
||||||
})
|
})
|
||||||
lspconfig.lua_ls.setup({})
|
|
||||||
lspconfig.matlab_ls.setup({})
|
|
||||||
lspconfig.mesonlsp.setup({})
|
|
||||||
lspconfig.sqlls.setup({})
|
|
||||||
lspconfig.svlangserver.setup({})
|
|
||||||
lspconfig.texlab.setup({})
|
|
||||||
|
|
||||||
lspconfig.ts_ls.setup({
|
vim.lsp.config("ts_ls", {
|
||||||
init_options = {
|
init_options = {
|
||||||
plugins = {
|
plugins = {
|
||||||
{
|
{
|
||||||
name = "@vue/typescript-plugin",
|
name = "@vue/typescript-plugin",
|
||||||
location = volar_path,
|
location = vim.fn.expand("$MASON") .. "/packages/vue-language-server/node_modules/@vue/language-server",
|
||||||
languages = { "vue" },
|
languages = { "vue" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
filetypes = { "typescript", "javascript", "javascriptreact", "typescriptreact", "vue" },
|
filetypes = { "typescript", "javascript", "javascriptreact", "typescriptreact", "vue" },
|
||||||
})
|
})
|
||||||
lspconfig.volar.setup({})
|
|
||||||
lspconfig.zig.setup({})
|
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue