From 7f32284d52d21eb7ad1ed1050bb777f4dacbc641 Mon Sep 17 00:00:00 2001 From: Binciu Viorel Date: Sun, 26 May 2024 11:39:59 +0300 Subject: [PATCH] feat: Added ruff-format --- lua/plugins/ruff-format.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lua/plugins/ruff-format.lua diff --git a/lua/plugins/ruff-format.lua b/lua/plugins/ruff-format.lua new file mode 100644 index 0000000..e758461 --- /dev/null +++ b/lua/plugins/ruff-format.lua @@ -0,0 +1,8 @@ +return { + "stevearc/conform.nvim", + opts = { + formatters_by_ft = { + python = { "ruff_format" }, + }, + }, +}