2023-01-15 00:17:41 +07:00
|
|
|
local servers = {
|
2024-03-12 20:25:12 +07:00
|
|
|
"lua_ls",
|
2023-01-15 00:17:41 +07:00
|
|
|
}
|
|
|
|
|
2023-02-25 17:44:22 +07:00
|
|
|
local function idxOf(array, value)
|
2024-03-12 20:25:12 +07:00
|
|
|
for i, v in ipairs(array) do
|
|
|
|
if v == value then
|
|
|
|
return i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return nil
|
2023-02-25 17:44:22 +07:00
|
|
|
end
|
|
|
|
|
2023-03-05 17:34:12 +07:00
|
|
|
local data_exists, custom_lsp = pcall(require, "core.config")
|
2023-02-12 15:10:57 +07:00
|
|
|
if data_exists then
|
2024-03-12 20:25:12 +07:00
|
|
|
for _, client in pairs(custom_lsp.mason_ensure_installed) do
|
|
|
|
table.insert(servers, client)
|
|
|
|
end
|
2023-02-12 15:10:57 +07:00
|
|
|
end
|
|
|
|
|
2023-03-06 09:18:34 +07:00
|
|
|
local unregis_lsp = {}
|
2023-03-05 17:34:12 +07:00
|
|
|
local data_ok, unregis = pcall(require, "core.config")
|
2023-02-25 17:44:22 +07:00
|
|
|
if data_ok then
|
2024-03-12 20:25:12 +07:00
|
|
|
if unregis.unregister_lsp ~= nil then
|
|
|
|
unregis_lsp = unregis.unregister_lsp
|
|
|
|
end
|
2023-02-25 17:44:22 +07:00
|
|
|
end
|
|
|
|
|
2023-01-15 00:17:41 +07:00
|
|
|
local settings = {
|
2024-03-12 20:25:12 +07:00
|
|
|
ui = {
|
|
|
|
-- border = "none",
|
2024-04-15 18:41:24 +07:00
|
|
|
border = { "╭", "─", "╮", "│", "╯", "─", "╰", "│" },
|
2024-03-12 20:25:12 +07:00
|
|
|
icons = {
|
|
|
|
-- package_installed = "◍",
|
|
|
|
-- package_pending = "◍",
|
|
|
|
-- package_uninstalled = "◍",
|
2024-04-15 18:41:24 +07:00
|
|
|
package_pending = " ",
|
|
|
|
package_installed = " ",
|
|
|
|
package_uninstalled = " ",
|
2024-03-12 20:25:12 +07:00
|
|
|
},
|
|
|
|
keymaps = {
|
|
|
|
-- Keymap to expand a server in the UI
|
|
|
|
toggle_server_expand = "<CR>",
|
|
|
|
-- Keymap to install the server under the current cursor position
|
|
|
|
install_server = "i",
|
|
|
|
-- Keymap to reinstall/update the server under the current cursor position
|
|
|
|
update_server = "u",
|
|
|
|
-- Keymap to check for new version for the server under the current cursor position
|
|
|
|
check_server_version = "c",
|
|
|
|
-- Keymap to update all installed servers
|
|
|
|
update_all_servers = "U",
|
|
|
|
-- Keymap to check which installed servers are outdated
|
|
|
|
check_outdated_servers = "C",
|
|
|
|
-- Keymap to uninstall a server
|
|
|
|
uninstall_server = "X",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
log_level = vim.log.levels.INFO,
|
|
|
|
max_concurrent_installers = 4,
|
2023-01-15 00:17:41 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
require("mason").setup(settings)
|
2023-01-16 07:36:45 +07:00
|
|
|
-- * buka remark ini jika akan menggunakan list serverrs diatas dan remark config dibawah
|
2023-03-06 09:18:34 +07:00
|
|
|
require("mason-lspconfig").setup({
|
2024-03-12 20:25:12 +07:00
|
|
|
ensure_installed = servers,
|
|
|
|
automatic_installation = true,
|
2023-03-06 09:18:34 +07:00
|
|
|
})
|
2023-01-16 07:36:45 +07:00
|
|
|
--
|
|
|
|
-- * buka remark ini jika ingin menjalankan dengan cara install dan remark config diatas (pilih satu)
|
2023-03-06 09:18:34 +07:00
|
|
|
-- require("mason-lspconfig").setup()
|
2023-01-15 00:17:41 +07:00
|
|
|
|
|
|
|
local lspconfig_status_ok, lspconfig = pcall(require, "lspconfig")
|
|
|
|
if not lspconfig_status_ok then
|
2024-03-12 20:25:12 +07:00
|
|
|
return
|
2023-01-15 00:17:41 +07:00
|
|
|
end
|
|
|
|
|
|
|
|
local opts = {}
|
|
|
|
|
2023-03-06 09:18:34 +07:00
|
|
|
require("mason-lspconfig").setup_handlers({
|
2024-03-12 20:25:12 +07:00
|
|
|
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 = {
|
|
|
|
on_attach = require("user.lsp.handlers").on_attach,
|
|
|
|
capabilities = require("user.lsp.handlers").capabilities,
|
|
|
|
}
|
2023-01-15 00:17:41 +07:00
|
|
|
|
2024-03-12 20:25:12 +07:00
|
|
|
server_name = vim.split(server_name, "@")[1]
|
2023-01-15 00:17:41 +07:00
|
|
|
|
2024-03-12 20:25:12 +07:00
|
|
|
local require_ok, conf_opts = pcall(require, "user.lsp.settings." .. server_name)
|
|
|
|
if require_ok then
|
|
|
|
opts = vim.tbl_deep_extend("force", conf_opts, opts)
|
|
|
|
end
|
|
|
|
lspconfig[server_name].setup(opts)
|
|
|
|
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,
|
|
|
|
-- ["tsserver"] = function()
|
|
|
|
-- lspconfig.tsserver.setup({
|
|
|
|
-- on_attach = require("user.lsp.handlers").on_attach,
|
|
|
|
-- capabilities = require("user.lsp.handlers").capabilities,
|
|
|
|
-- -- add cmd
|
|
|
|
-- cmd = { "typescript-language-server", "--stdio" },
|
|
|
|
-- -- add file type support
|
|
|
|
-- filetypes = {
|
|
|
|
-- "javascript",
|
|
|
|
-- "javascriptreact",
|
|
|
|
-- "javascript.jsx",
|
|
|
|
-- "typescript",
|
|
|
|
-- "typescriptreact",
|
|
|
|
-- "typescript.tsx",
|
|
|
|
-- },
|
|
|
|
-- -- add dynamic root dir support
|
|
|
|
-- root_dir = require("lspconfig.util").root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git"),
|
|
|
|
-- init_options = {
|
|
|
|
-- hostInfo = "neovim",
|
|
|
|
-- },
|
|
|
|
-- })
|
|
|
|
-- end,
|
|
|
|
-- ["emmet_ls"] = function()
|
|
|
|
-- lspconfig.emmet_ls.setup({
|
|
|
|
-- on_attach = require("user.lsp.handlers").on_attach,
|
|
|
|
-- capabilities = require("user.lsp.handlers").capabilities,
|
|
|
|
-- -- add cmd
|
|
|
|
-- cmd = { "emmet-ls", "-c", "--stdio" },
|
|
|
|
-- -- add file type support
|
|
|
|
-- -- filetypes = {
|
|
|
|
-- -- "javascript",
|
|
|
|
-- -- "javascriptreact",
|
|
|
|
-- -- "javascript.jsx",
|
|
|
|
-- -- "typescript",
|
|
|
|
-- -- "typescriptreact",
|
|
|
|
-- -- "typescript.tsx",
|
|
|
|
-- -- "astro",
|
|
|
|
-- -- "css",
|
|
|
|
-- -- "eruby",
|
|
|
|
-- -- "html",
|
|
|
|
-- -- "htmldjango",
|
|
|
|
-- -- "less",
|
|
|
|
-- -- "pug",
|
|
|
|
-- -- "sass",
|
|
|
|
-- -- "scss",
|
|
|
|
-- -- "svelte",
|
|
|
|
-- -- "vue" -- },
|
|
|
|
-- -- add dynamic root dir support
|
|
|
|
-- root_dir = require("lspconfig.util").root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git"),
|
|
|
|
-- })
|
|
|
|
-- end,
|
|
|
|
-- ["eslint"] = function()
|
|
|
|
-- lspconfig.eslint.setup({
|
|
|
|
-- on_attach = require("user.lsp.handlers").on_attach,
|
|
|
|
-- capabilities = require("user.lsp.handlers").capabilities,
|
|
|
|
-- -- add cmd
|
|
|
|
-- cmd = { "vscode-eslint-language-server", "--stdio" }, -- add file type support
|
|
|
|
-- filetypes = {
|
|
|
|
-- "javascript",
|
|
|
|
-- "javascriptreact",
|
|
|
|
-- "javascript.jsx",
|
|
|
|
-- "typescript",
|
|
|
|
-- "typescriptreact",
|
|
|
|
-- "typescript.tsx",
|
|
|
|
-- },
|
|
|
|
-- -- add dynamic root dir support
|
|
|
|
-- root_dir = require("lspconfig.util").root_pattern("package.json", "tsconfig.json", "jsconfig.json", ".git"),
|
|
|
|
-- })
|
|
|
|
-- end,
|
|
|
|
-- ["kotlin_language_server"] = function()
|
|
|
|
-- lspconfig.kotlin_language_server.setup({
|
|
|
|
-- on_attach = require("user.lsp.handlers").on_attach,
|
|
|
|
-- capabilities = require("user.lsp.handlers").capabilities,
|
|
|
|
-- cmd = { "kotlin-language-server" },
|
|
|
|
-- filetypes = { "kotlin" },
|
|
|
|
-- root_dir = require("lspconfig.util").root_pattern(
|
|
|
|
-- "build.gradle.kts",
|
|
|
|
-- "build.gradle",
|
|
|
|
-- "settings.gradle",
|
|
|
|
-- "gradlew",
|
|
|
|
-- "pom.xml",
|
|
|
|
-- "build.gradle.kts",
|
|
|
|
-- "build.kts",
|
|
|
|
-- ".git"
|
|
|
|
-- ),
|
|
|
|
-- })
|
|
|
|
-- end,
|
|
|
|
-- ["clangd"] = function()
|
|
|
|
-- lspconfig.clangd.setup({
|
|
|
|
-- on_attach = require("user.lsp.handlers").on_attach,
|
|
|
|
-- capabilities = require("user.lsp.handlers").capabilities,
|
|
|
|
-- root_dir = require("lspconfig.util").root_pattern(
|
|
|
|
-- "build",
|
|
|
|
-- "compile_commands.json",
|
|
|
|
-- ".git",
|
|
|
|
-- "mvnw",
|
|
|
|
-- "gradlew",
|
|
|
|
-- "pom.xml",
|
|
|
|
-- "build.gradle"
|
|
|
|
-- ) or vim.loop.cwd() or vim.fn.getcwd(),
|
|
|
|
-- })
|
|
|
|
-- end,
|
2023-03-06 09:18:34 +07:00
|
|
|
})
|