From 043a1861587ba3921ba3e6132762457e9b78236b Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Thu, 20 Jan 2022 08:28:37 -0600 Subject: Load +straight.el --- early-init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/early-init.el b/early-init.el index 840a649..c379934 100644 --- a/early-init.el +++ b/early-init.el @@ -145,7 +145,8 @@ See `no-littering' for examples.") (dolist (pkg '(el-patch no-littering - setup)) + setup + straight)) ; already installed, but what the hell (straight-use-package pkg) (require pkg) (require (intern (format "+%s" pkg)) nil :noerror)) -- cgit 1.4.1-21-gabe81 From 2341b8279d8832f6f931c03e0728eea5954932b4 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Thu, 20 Jan 2022 08:28:49 -0600 Subject: Don't hide markdown markup It makes it harder to read and edit. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index f28da00..235e030 100644 --- a/init.el +++ b/init.el @@ -1329,7 +1329,7 @@ See also `crux-reopen-as-root-mode'." (marginalia-mode +1)) (setup (:straight markdown-mode) - (:option markdown-hide-markup t) + (:option markdown-hide-markup nil) (add-to-list 'auto-mode-alist (cons (rx (or ".md" ".markdown" ".mdown") eos) 'markdown-mode)) -- cgit 1.4.1-21-gabe81 From 04e917c834ce1654736e1eb205a1b304e559ff4a Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Thu, 20 Jan 2022 08:29:04 -0600 Subject: Fix mode-line-bell recipe --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 235e030..b930513 100644 --- a/init.el +++ b/init.el @@ -1355,7 +1355,8 @@ See also `crux-reopen-as-root-mode'." (setup (:straight (mode-line-bell :host github :repo "purcell/mode-line-bell" - :fork (:host github :repo "duckwork/mode-line-bell"))) + :fork (:host github :repo "duckwork/mode-line-bell" + :branch "remap-face"))) (:option mode-line-bell-flash-time 0.1) (mode-line-bell-mode +1)) -- cgit 1.4.1-21-gabe81