1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-07-03 06:53:40 +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", "neovim/nvim-lspconfig",
ft = { "php" }, ft = { "php" },
@ -32,6 +43,7 @@ return {
servers = lspservers servers = lspservers
}, },
}, },
-- Testing
{ {
"nvim-neotest/neotest", "nvim-neotest/neotest",
optional = true, optional = true,