Add conform for foramtting and mason back for lsp installation but nothing more

This commit is contained in:
Zam Kokott
2025-11-12 14:11:48 +00:00
parent 4acf9a7852
commit f7db5e3599
6 changed files with 27 additions and 16 deletions

15
lua/plugins/conform.lua Normal file
View File

@@ -0,0 +1,15 @@
return {
"stevearc/conform.nvim",
config = function()
require("conform").setup {
formatters_by_ft = {
lua = { "stylua" },
python = { "black" }
},
format_on_save = {
timeout_ms = 500,
lsp_format = "fallback"
}
}
end
}