From 353cc6cc3152734d1129582c1ec793c7f65d9426 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Tue, 21 Nov 2023 13:30:43 +0100 Subject: [PATCH] helix: use ruff --- roles/home/helix.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/roles/home/helix.nix b/roles/home/helix.nix index 64f0825..fa9da0e 100644 --- a/roles/home/helix.nix +++ b/roles/home/helix.nix @@ -3,10 +3,7 @@ let pythonPkgs = with pkgs.python3Packages; [ python-lsp-server - pyflakes - rope - yapf - autoflake + python-lsp-ruff ]; in { @@ -61,6 +58,7 @@ in nodePackages.typescript nodePackages.svelte-language-server nixpkgs-fmt + ruff ] ++ pythonPkgs; }; }