added none-ls (null-ls)

This commit is contained in:
2025-07-25 16:04:48 +02:00
parent cf8bac705a
commit aacdd5e376
4 changed files with 69 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
local null_ls = require("null-ls")
null_ls.setup({
sources = {
null_ls.builtins.formatting.phpcbf.with({
command = "phpcbf", -- or full path if not in PATH
extra_args = { "--standard=PSR12" },
}),
},
on_attach = on_attach,
})