summaryrefslogtreecommitdiff
path: root/.emacs.d
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-05-12 13:30:40 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-05-12 13:30:40 -0700
commit76214e6b9e78f4853f8970069a1720f58dd2d6cd (patch)
tree05a555b2d7abbef86992b72afc7a5338b92119ce /.emacs.d
parentdcb5d6394c13891869c87914ad94348eddbefb62 (diff)
downloaddotfiles-76214e6b9e78f4853f8970069a1720f58dd2d6cd.tar.gz
tidy haskell-mode settings inc. dropping obsolete variables
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el10
1 files changed, 2 insertions, 8 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 84ada0e1..50ab0cdb 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -188,6 +188,8 @@ windows side-by-side in the frame."
'(gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3" nil nil "Seems needed to make HTTPS connections on Debian buster (at least).")
'(gnutls-min-prime-bits 1024)
'(gnutls-verify-error t)
+ '(haskell-indentation-layout-offset 4)
+ '(haskell-indentation-left-offset 4)
'(holiday-bahai-holidays nil)
'(holiday-hebrew-holidays nil)
'(holiday-islamic-holidays nil)
@@ -3365,14 +3367,6 @@ scroll through them."
(with-eval-after-load 'ebib
(setq ebib-hidden-fields (delete "translator" ebib-hidden-fields)))
-(spw/when-library-available haskell-mode
- (setq haskell-indentation-layout-offset 4
- haskell-indentation-left-offset 4
- haskell-indentation-show-indentations nil
-
- ;; this tends to get in the way
- haskell-mode-contextual-import-completion nil))
-
(with-eval-after-load 'haskell-mode
(add-hook 'haskell-mode-hook 'subword-mode)