From ac09076b513ca45ab5f6885e01660ee14d735951 Mon Sep 17 00:00:00 2001 From: Jet Pham Date: Thu, 5 Mar 2026 15:49:04 -0800 Subject: [PATCH] feat: remove haskell from helix configuration --- home.nix | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/home.nix b/home.nix index b1ce53a..7bc165c 100644 --- a/home.nix +++ b/home.nix @@ -120,24 +120,16 @@ }; }; languages = { - haskell = { - config = { + language = [ + { + name = "rust"; end-of-line-diagnostics = "hint"; - }; - "inline-diagnostics" = { - cursor-line = "hint"; - other-lines = "hint"; - }; - }; - rust = { - config = { - end-of-line-diagnostics = "hint"; - }; - "inline-diagnostics" = { - cursor-line = "hint"; - other-lines = "hint"; - }; - }; + inline-diagnostics = { + cursor-line = "hint"; + other-lines = "hint"; + }; + } + ]; }; };