diff options
author | Case Duckworth | 2022-01-21 09:30:31 -0600 |
---|---|---|
committer | Case Duckworth | 2022-01-21 09:30:31 -0600 |
commit | 44741fed54c0f7b6a5a5f00a28b01bf91f7afbf6 (patch) | |
tree | 4fd42b17066146dac8b47d3fc5c30356ef815af3 | |
parent | Being working on +elfeed-update-async (diff) | |
parent | Fix mode-line-bell recipe (diff) | |
download | emacs-44741fed54c0f7b6a5a5f00a28b01bf91f7afbf6.tar.gz emacs-44741fed54c0f7b6a5a5f00a28b01bf91f7afbf6.zip |
Merge branch 'main' of tildegit.org:acdw/emacs
-rw-r--r-- | early-init.el | 3 | ||||
-rw-r--r-- | init.el | 5 |
2 files changed, 5 insertions, 3 deletions
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.") | |||
145 | 145 | ||
146 | (dolist (pkg '(el-patch | 146 | (dolist (pkg '(el-patch |
147 | no-littering | 147 | no-littering |
148 | setup)) | 148 | setup |
149 | straight)) ; already installed, but what the hell | ||
149 | (straight-use-package pkg) | 150 | (straight-use-package pkg) |
150 | (require pkg) | 151 | (require pkg) |
151 | (require (intern (format "+%s" pkg)) nil :noerror)) | 152 | (require (intern (format "+%s" pkg)) nil :noerror)) |
diff --git a/init.el b/init.el index 3e023db..151bc69 100644 --- a/init.el +++ b/init.el | |||
@@ -1334,7 +1334,7 @@ See also `crux-reopen-as-root-mode'." | |||
1334 | (marginalia-mode +1)) | 1334 | (marginalia-mode +1)) |
1335 | 1335 | ||
1336 | (setup (:straight markdown-mode) | 1336 | (setup (:straight markdown-mode) |
1337 | (:option markdown-hide-markup t) | 1337 | (:option markdown-hide-markup nil) |
1338 | (add-to-list 'auto-mode-alist (cons (rx (or ".md" ".markdown" ".mdown") | 1338 | (add-to-list 'auto-mode-alist (cons (rx (or ".md" ".markdown" ".mdown") |
1339 | eos) | 1339 | eos) |
1340 | 'markdown-mode)) | 1340 | 'markdown-mode)) |
@@ -1360,7 +1360,8 @@ See also `crux-reopen-as-root-mode'." | |||
1360 | 1360 | ||
1361 | (setup (:straight (mode-line-bell | 1361 | (setup (:straight (mode-line-bell |
1362 | :host github :repo "purcell/mode-line-bell" | 1362 | :host github :repo "purcell/mode-line-bell" |
1363 | :fork (:host github :repo "duckwork/mode-line-bell"))) | 1363 | :fork (:host github :repo "duckwork/mode-line-bell" |
1364 | :branch "remap-face"))) | ||
1364 | (:option mode-line-bell-flash-time 0.1) | 1365 | (:option mode-line-bell-flash-time 0.1) |
1365 | (mode-line-bell-mode +1)) | 1366 | (mode-line-bell-mode +1)) |
1366 | 1367 | ||