1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00
dotfiles/nvim/lua/user/plugins/lang/php/format.lua

14 lines
327 B
Lua

return {
require 'user.utils.mason'.ensure_installed({'pint', 'php-cs-fixer'}),
{
'stevearc/conform.nvim',
optional = true,
opts = {
formatters_by_ft = {
php = { 'php-cs-fixer', 'pint' },
blade = { 'blade-formatter' }
}
}
}
}