summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mms-gui.org5
-rw-r--r--mms-misc.org22
-rw-r--r--mms-prog.org1
3 files changed, 21 insertions, 7 deletions
diff --git a/mms-gui.org b/mms-gui.org
index c26ab70..0765f59 100644
--- a/mms-gui.org
+++ b/mms-gui.org
@@ -52,7 +52,7 @@ It is also available for FreeBSD and macOS:
(defun mms-voyager-clamshell-font-mode ()
;; Set fonts for Voyager in clamshell mode
(interactive)
- (set-face-attribute 'default nil :font "iosevka" :height 135))
+ (set-face-attribute 'default nil :font "iosevka" :height 80))
(defun mms-voyager-laptop-font-mode ()
;; Set fonts for Voyager in clamshell mode
@@ -65,6 +65,9 @@ It is also available for FreeBSD and macOS:
(set-face-attribute 'default nil :font "iosevka" :height 200))
#+end_src
+#+RESULTS:
+: mms-presentation-font-mode
+
* Colors
diff --git a/mms-misc.org b/mms-misc.org
index 967bd90..c051613 100644
--- a/mms-misc.org
+++ b/mms-misc.org
@@ -42,13 +42,25 @@ I use notmuch as my MUA.
You can find my guide on my [[https://michal.sapka.me/emacs/notmuch/][emacs site]].
#+BEGIN_SRC emacs-lisp
- (use-package notmuch
- :commands notmuch-hello
- :config
- (setq notmuch-search-oldest-first nil
- notmuch-search-line-faces '(("gh-pr-todo" . ((t :foreground "#f77"))))) )
+ (use-package notmuch
+ :commands notmuch-hello
+ :config
+ (setq notmuch-tree-result-format
+ '(("date" . "%12s ")
+ ("authors" . "%-20s ")
+ ((("tree" . "%s")
+ ("subject" . "%s"))
+ . " %-80s ")
+ ("tags" . "(%s)")))
+ (setq
+ notmuch-hello-auto-refresh t
+ notmuch-search-oldest-first nil
+ notmuch-search-line-faces '(("gh-pr-todo" . ((t :foreground "#f77"))))) )
#+END_SRC
+#+RESULTS:
+: [nil 26381 35704 951650 nil elpaca-process-queues nil nil 443000 nil]
+
** composing
I use =msmtp= for email sendout.
diff --git a/mms-prog.org b/mms-prog.org
index 88b9966..6f2feab 100644
--- a/mms-prog.org
+++ b/mms-prog.org
@@ -95,7 +95,6 @@ I use =consult= for the as-I-type propositions.
#+begin_src emacs-lisp
(use-package taxy-magit-section
:ensure t)
-
#+end_src
#+begin_src emacs-lisp