From ef3a9dbc2cb4b8f8257e647a695f6ed676164be0 Mon Sep 17 00:00:00 2001 From: jasmine Date: Wed, 19 Feb 2025 20:44:42 +0800 Subject: [PATCH] feat: Remove support for stylish-haskell formatter --- config/plugins/lsp/conform.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/config/plugins/lsp/conform.nix b/config/plugins/lsp/conform.nix index dfaa155..1499a40 100644 --- a/config/plugins/lsp/conform.nix +++ b/config/plugins/lsp/conform.nix @@ -18,7 +18,6 @@ # Map of filetype to formatters. formatters_by_ft = { c = ["clang-format"]; - haskell = ["stylish-haskell"]; lua = ["stylua"]; nix = ["alejandra"]; }; @@ -31,9 +30,6 @@ clang-format = { command = lib.getExe' pkgs.clang-tools "clang-format"; }; - stylish-haskell = { - command = lib.getExe pkgs.stylish-haskell; - }; stylua = { command = lib.getExe pkgs.stylua; };