From 7721ab728a0c652d92b4178e05da91577616d3cd Mon Sep 17 00:00:00 2001 From: Belal Elsabbagh Date: Tue, 30 Dec 2025 17:01:50 +0200 Subject: [PATCH] formatter fallback --- .config/nvim/lua/plugins/formatter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/formatter.lua b/.config/nvim/lua/plugins/formatter.lua index c048141..f52023f 100644 --- a/.config/nvim/lua/plugins/formatter.lua +++ b/.config/nvim/lua/plugins/formatter.lua @@ -26,7 +26,7 @@ return { formatters_by_ft = { lua = { 'stylua' }, go = { 'gofmt' }, - python = { 'ruff' }, + python = { 'ruff', "black", stop_after_first = true}, javascript = { 'biome', 'prettier', stop_after_first = true }, typescript = { 'biome', 'prettier', stop_after_first = true }, html = { 'biome', 'prettier', stop_after_first = true },