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 @@
column_width = 120 column_width = 120
line_endings = "Unix" line_endings = "Unix"
indent_type = "Spaces" indent_type = "Spaces"
indent_width = 2 indent_width = 4
quote_style = "AutoPreferDouble" quote_style = "AutoPreferDouble"
call_parentheses = "None" call_parentheses = "None"

View File

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