commit bf10bc625b3d906ef20bfff697e774408bbe4d96 parent be6d4e4badbd90775d4e36b0cbfcd3995f40a15f Author: Alex Balgavy <alex@balgavy.eu> Date: Wed, 22 Dec 2021 00:01:40 +0100 emacs; recursive minibuffers Diffstat:
M | emacs/config.org | | | 6 | ++++++ |
M | emacs/custom.el | | | 3 | ++- |
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/emacs/config.org b/emacs/config.org @@ -771,6 +771,12 @@ I'll use the keybinding that's standard on macOS: (global-set-key (kbd "C-s-f") #'toggle-frame-fullscreen) #+end_src +** Enable recursive minibuffers +#+begin_src emacs-lisp + (setq enable-recursive-minibuffers t + minibuffer-depth-indicate-mode t) +#+end_src + * Notmuch Define some saved searches (i.e. mailboxes): diff --git a/emacs/custom.el b/emacs/custom.el @@ -21,7 +21,7 @@ '(objed-cursor-color "#ff6c6b") '(package-hidden-regexps '("^I")) '(package-selected-packages - '(hl-todo org-noter org-ref virtualenvwrapper elpy pdf-tools diminish company-lean counsel rainbow-mode edit-indirect expand-region elpher sr-speedbar 2048-game vterm notmuch magit lean-mode markdown-mode anki-connect anki-editor doom-themes all-the-icons use-package-ensure which-key use-package org-bullets exec-path-from-shell)) + '(csv-mode hl-todo org-noter org-ref virtualenvwrapper elpy pdf-tools diminish company-lean counsel rainbow-mode edit-indirect expand-region elpher sr-speedbar 2048-game vterm notmuch magit lean-mode markdown-mode anki-connect anki-editor doom-themes all-the-icons use-package-ensure which-key use-package org-bullets exec-path-from-shell)) '(pdf-view-midnight-colors (cons "#bbc2cf" "#282c34")) '(rustic-ansi-faces ["#282c34" "#ff6c6b" "#98be65" "#ECBE7B" "#51afef" "#c678dd" "#46D9FF" "#bbc2cf"]) @@ -55,4 +55,5 @@ '(helm-buffer-file ((t (:inherit default)))) '(helm-ff-file-extension ((t (:inherit default)))) '(helm-non-file-buffer ((t (:inherit font-lock-comment-face)))) + '(hl-todo ((t (:inherit hl-todo :underline t)))) '(pulse-highlight-start-face ((t (:background "CadetBlue2")))))