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; };