1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00

nvim: php: add blade formatter.

This commit is contained in:
Henrik Hautakoski 2024-10-01 14:22:45 +02:00
parent 7756703feb
commit a4a13bfadd

View file

@ -25,6 +25,17 @@ return {
}
}
},
-- Formatting
{
'stevearc/conform.nvim',
optional = true,
opts = {
formatters_by_ft = {
blade = { 'blade-formatter' },
}
}
},
-- LSP
{
"neovim/nvim-lspconfig",
ft = { "php" },
@ -32,6 +43,7 @@ return {
servers = lspservers
},
},
-- Testing
{
"nvim-neotest/neotest",
optional = true,