mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-27 19:28:52 +02:00
update
This commit is contained in:
parent
ee681ef572
commit
a9e51972a9
4 changed files with 4 additions and 4 deletions
|
@ -29,7 +29,7 @@ config = {
|
|||
model = opt("model", 1),
|
||||
format_on_save = opt("format_on_save", 1),
|
||||
lsp_installer = opt("lsp_installer", {}),
|
||||
register_lsp = opt("register_lsp", {}),
|
||||
mason_ensure_installed = opt("mason_ensure_installed", {}),
|
||||
unregister_lsp = opt("unregister_lsp", {}),
|
||||
null_ls_sources = opt("null_ls_sources", {}),
|
||||
whichkey = opt("whichkey", {}),
|
||||
|
|
|
@ -78,7 +78,7 @@ vim.g.pcode_lsp_installer = {
|
|||
}
|
||||
-- untuk referesi support language kunjungi link dibawah
|
||||
-- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
|
||||
vim.g.pcode_register_lsp = {
|
||||
vim.g.pcode_mason_ensure_installed = { -- sebelumnya register_lsp
|
||||
"yamlls",
|
||||
-- "intelephense",
|
||||
-- "marksman",
|
||||
|
|
|
@ -13,7 +13,7 @@ end
|
|||
|
||||
local data_exists, custom_lsp = pcall(require, "core.config")
|
||||
if data_exists then
|
||||
for _, client in pairs(custom_lsp.register_lsp) do
|
||||
for _, client in pairs(custom_lsp.mason_ensure_installed) do
|
||||
table.insert(servers, client)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue