This commit is contained in:
2026-01-30 10:45:28 -06:00
parent eab1653d4e
commit cbf12def45
3 changed files with 16 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
require("nvchad.configs.lspconfig").defaults()
local servers = { "html", "cssls" }
local servers = { "phpactor" }
vim.lsp.enable(servers)
-- read :h vim.lsp.config for changing options of lsp servers

14
lua/plugins/mason.lua Normal file
View File

@@ -0,0 +1,14 @@
return {
{
"williamboman/mason.nvim"
},
{
"williamboman/mason-lspconfig.nvim",
opts = {
ensure_installed = {
"phpactor",
}
}
}
}