From f8936662c28b4da822151e4ab2ba05a288932edb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Wed, 2 Sep 2026 07:56:57 -0600 Subject: [PATCH] fix(emacs): set haskell-ts vars in haskell-ts --- modules/home/users/msyds/emacs/lisp/syd/haskell.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/home/users/msyds/emacs/lisp/syd/haskell.el b/modules/home/users/msyds/emacs/lisp/syd/haskell.el index a732174..231cdfd 100644 --- a/modules/home/users/msyds/emacs/lisp/syd/haskell.el +++ b/modules/home/users/msyds/emacs/lisp/syd/haskell.el @@ -50,9 +50,7 @@ :custom (; Show errors in REPL, not popup buffers. (haskell-interactive-popup-errors nil) (haskell-process-suggest-remove-import-line t) - (haskell-process-auto-import-loaded-modules t) - (haskell-ts-inferior-history-file - (file-name-concat syd-data-dir "haskell-ts-inferior-history"))) + (haskell-process-auto-import-loaded-modules t)) :general (:keymaps 'haskell-mode-map :states '(normal visual motion emacs insert) @@ -89,7 +87,9 @@ :custom ((haskell-ts-font-lock-level 4) (haskell-ts-ghci "ghci") (haskell-ts-inferior-prompt-regexp - (rx bol (or "λ> " "|> ")))) + (rx bol (or "λ> " "|> "))) + (haskell-ts-inferior-history-file + (file-name-concat syd-data-dir "haskell-ts-inferior-history"))) :general (:keymaps 'haskell-ts-mode-map :states '(normal motion)