feat(java): Force formatting with null-ls (clang-format) for java projects

This commit is contained in:
kalmenn 2025-01-16 16:19:58 +01:00
parent d4ffb9a874
commit 876229d65d
Signed by: kalmenn
GPG key ID: F500055C44BC3834

View file

@ -18,6 +18,18 @@ return {
callback = function(ev)
if (ev.match == "java") then
require("jdtls").start_or_attach(opts)
local handler = function()
vim.lsp.buf.format({
async = true,
filter = function(client)
return client.name == "null-ls"
end,
})
vim.notify("Formatted with null-ls")
end
vim.keymap.set("n", "<leader>f", handler, { buffer = ev.buf })
end
end,
})