feat: add python formatter

This commit is contained in:
Ian
2026-07-15 22:59:37 +02:00
parent ee42090f4f
commit 8d58de8cd1
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -12,6 +12,7 @@ function Run()
-- Conform => formatters
{ cmd = "stylua", desc = "lua formatter" },
{ cmd = "ruff", desc = "python formatter" },
-- Lsp server
{ cmd = "lua-language-server", desc = "lua lsp server" },
+1
View File
@@ -1,5 +1,6 @@
require("conform").setup({
formatters_by_ft = {
lua = { "stylua" },
python = { "ruff_format"},
},
})