diff options
author | jao <jao@gnu.org> | 2022-08-01 23:05:56 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-08-01 23:05:56 +0100 |
commit | e694bbdc2996274e2259a7205b4abd91e9e72b4d (patch) | |
tree | 67198290d2ee39294d47953814b6672f2593d3d0 | |
parent | 2a35dd02d97b72a9c6e12bbb2a5540d2ce9a3e5f (diff) | |
download | elibs-e694bbdc2996274e2259a7205b4abd91e9e72b4d.tar.gz elibs-e694bbdc2996274e2259a7205b4abd91e9e72b4d.tar.bz2 |
wee tweaks
-rw-r--r-- | init.el | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1370,11 +1370,9 @@ (add-to-list 'markdown-uri-types u))) ;; used by markdown mode to edit code blocks -(use-package edit-indirect - :ensure t) +(use-package edit-indirect :ensure t) -(use-package markdown-toc - :ensure t) +(use-package markdown-toc :ensure t) (dolist (ext '("\\.md$" "\\.markdown$")) (add-to-list 'auto-mode-alist (cons ext 'markdown-mode))) @@ -1805,7 +1803,7 @@ :ensure t :after doc-view :init (setq nov-variable-pitch t - nov-text-width 80) + nov-text-width nil) :config (add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode))) ;;;; transient @@ -2448,6 +2446,7 @@ ;;;; Idris (use-package idris-mode + :disabled t :ensure t :custom ((idris-interpreter-path "idris2") (idris-pretty-printer-width 80) @@ -2803,6 +2802,7 @@ ;;;; slack (use-package slack + :ensure t :commands (slack-start) :init (setq slack-alert-icon (jao-data-file "slack.svg") |