update config auto install lspconfig

This commit is contained in:
asep komarudin 2023-03-06 09:18:34 +07:00
parent 68160a01be
commit ee681ef572
3 changed files with 137 additions and 38 deletions

View file

@ -73,19 +73,19 @@ vim.g.pcode_format_on_save = 1
-- untuk referesi support language kunjungi link dibawah -- untuk referesi support language kunjungi link dibawah
-- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md -- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
vim.g.pcode_lsp_installer = { vim.g.pcode_lsp_installer = {
"yamlls", -- "yamlls",
-- tambahkan di bawah sini setelah melakukan :masoninstall -- tambahkan di bawah sini setelah melakukan :masoninstall
} }
-- untuk referesi support language kunjungi link dibawah -- untuk referesi support language kunjungi link dibawah
-- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md -- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
vim.g.pcode_register_lsp = { vim.g.pcode_register_lsp = {
"yamlls", "yamlls",
"intelephense", -- "intelephense",
"marksman", -- "marksman",
"csharp_ls", -- "csharp_ls",
"clangd", -- "clangd",
"dartls", -- "dartls",
"kotlin_language_server", -- "kotlin_language_server",
-- tambahkan di bawah sini setelah melakukan :masoninstall -- tambahkan di bawah sini setelah melakukan :masoninstall
} }
vim.g.pcode_unregister_lsp = { vim.g.pcode_unregister_lsp = {

View file

@ -1,11 +1,5 @@
local servers = { local servers = {
"sumneko_lua", "lua_ls",
"cssls",
"html",
"tsserver",
"pyright",
"jsonls",
"emmet_ls",
} }
local function idxOf(array, value) local function idxOf(array, value)
@ -24,15 +18,11 @@ if data_exists then
end end
end end
local unregis_lsp = {}
local data_ok, unregis = pcall(require, "core.config") local data_ok, unregis = pcall(require, "core.config")
if data_ok then if data_ok then
if unregis.unregister_lsp ~= nil then if unregis.unregister_lsp ~= nil then
for _, unreg in pairs(unregis.unregister_lsp) do unregis_lsp = unregis.unregister_lsp
local my_index = idxOf(servers, unreg)
if my_index ~= nil then
table.remove(servers, my_index)
end
end
end end
end end
@ -51,13 +41,13 @@ local settings = {
require("mason").setup(settings) require("mason").setup(settings)
-- * buka remark ini jika akan menggunakan list serverrs diatas dan remark config dibawah -- * buka remark ini jika akan menggunakan list serverrs diatas dan remark config dibawah
-- require("mason-lspconfig").setup({ require("mason-lspconfig").setup({
-- ensure_installed = servers, ensure_installed = servers,
-- automatic_installation = true, automatic_installation = true,
-- }) })
-- --
-- * buka remark ini jika ingin menjalankan dengan cara install dan remark config diatas (pilih satu) -- * buka remark ini jika ingin menjalankan dengan cara install dan remark config diatas (pilih satu)
require("mason-lspconfig").setup() -- require("mason-lspconfig").setup()
local lspconfig_status_ok, lspconfig = pcall(require, "lspconfig") local lspconfig_status_ok, lspconfig = pcall(require, "lspconfig")
if not lspconfig_status_ok then if not lspconfig_status_ok then
@ -66,18 +56,44 @@ end
local opts = {} local opts = {}
for _, server in pairs(servers) do require("mason-lspconfig").setup_handlers({
function(server_name) -- default handler (optional)
local is_skip = false
local my_index = idxOf(unregis_lsp, server_name)
if my_index ~= nil then
is_skip = true
end
if not is_skip then
if server_name == "lua_ls" then
server_name = "sumneko_lua"
end
opts = { opts = {
on_attach = require("user.lsp.handlers").on_attach, on_attach = require("user.lsp.handlers").on_attach,
capabilities = require("user.lsp.handlers").capabilities, capabilities = require("user.lsp.handlers").capabilities,
} }
server = vim.split(server, "@")[1] server_name = vim.split(server_name, "@")[1]
local require_ok, conf_opts = pcall(require, "user.lsp.settings." .. server) local require_ok, conf_opts = pcall(require, "user.lsp.settings." .. server_name)
if require_ok then if require_ok then
opts = vim.tbl_deep_extend("force", conf_opts, opts) opts = vim.tbl_deep_extend("force", conf_opts, opts)
end end
lspconfig[server_name].setup(opts)
lspconfig[server].setup(opts) end
end end,
-- Next, you can provide targeted overrides for specific servers.
-- ["rust_analyzer"] = function()
-- require("rust-tools").setup({})
-- end,
-- ["lua_ls"] = function()
-- lspconfig.sumneko_lua.setup({
-- settings = {
-- Lua = {
-- diagnostics = {
-- globals = { "vim" },
-- },
-- },
-- },
-- })
-- end,
})

View file

@ -0,0 +1,83 @@
local servers = {
"sumneko_lua",
"cssls",
"html",
"tsserver",
"pyright",
"jsonls",
"emmet_ls",
}
local function idxOf(array, value)
for i, v in ipairs(array) do
if v == value then
return i
end
end
return nil
end
local data_exists, custom_lsp = pcall(require, "core.config")
if data_exists then
for _, client in pairs(custom_lsp.register_lsp) do
table.insert(servers, client)
end
end
local data_ok, unregis = pcall(require, "core.config")
if data_ok then
if unregis.unregister_lsp ~= nil then
for _, unreg in pairs(unregis.unregister_lsp) do
local my_index = idxOf(servers, unreg)
if my_index ~= nil then
table.remove(servers, my_index)
end
end
end
end
local settings = {
ui = {
border = "none",
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = "",
},
},
log_level = vim.log.levels.INFO,
max_concurrent_installers = 4,
}
require("mason").setup(settings)
-- * buka remark ini jika akan menggunakan list serverrs diatas dan remark config dibawah
-- require("mason-lspconfig").setup({
-- ensure_installed = servers,
-- automatic_installation = true,
-- })
--
-- * buka remark ini jika ingin menjalankan dengan cara install dan remark config diatas (pilih satu)
require("mason-lspconfig").setup()
local lspconfig_status_ok, lspconfig = pcall(require, "lspconfig")
if not lspconfig_status_ok then
return
end
local opts = {}
for _, server in pairs(servers) do
opts = {
on_attach = require("user.lsp.handlers").on_attach,
capabilities = require("user.lsp.handlers").capabilities,
}
server = vim.split(server, "@")[1]
local require_ok, conf_opts = pcall(require, "user.lsp.settings." .. server)
if require_ok then
opts = vim.tbl_deep_extend("force", conf_opts, opts)
end
lspconfig[server].setup(opts)
end