From f74cddafe5f2d5df33fbf81815c7e024d8c7a10d Mon Sep 17 00:00:00 2001 From: jao Date: Sat, 18 Jun 2022 18:11:49 +0100 Subject: nits --- custom/jao-custom-notmuch.el | 2 ++ data/kitty.conf | 4 +++- init.el | 5 ++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/custom/jao-custom-notmuch.el b/custom/jao-custom-notmuch.el index 27c0621..d65958f 100644 --- a/custom/jao-custom-notmuch.el +++ b/custom/jao-custom-notmuch.el @@ -191,6 +191,8 @@ notmuch-tag-deleted-formats '(("unread") ("new") + ("flagged") + ("deleted") (".*" (notmuch-apply-face tag 'notmuch-tag-deleted)))) (with-eval-after-load "notmuch-tag" diff --git a/data/kitty.conf b/data/kitty.conf index e4209da..947bdb7 100644 --- a/data/kitty.conf +++ b/data/kitty.conf @@ -37,7 +37,9 @@ visual_bell_duration 0.2 window_alert_on_bell yes enable_audio_bell no -remember_window_size no +remember_window_size yes +initial_window_width 640 +initial_window_height 400 enabled_layouts * window_border_width 1 diff --git a/init.el b/init.el index 312424c..d7e7ebb 100644 --- a/init.el +++ b/init.el @@ -1076,7 +1076,7 @@ (set-window-buffer (selected-window) next-win) (set-window-buffer (funcall selector) this-win) (select-window (funcall selector))) - (setq arg (if (plusp arg) (1- arg) (1+ arg)))))) + (setq arg (if (> arg 0) (1- arg) (1+ arg)))))) (define-key ctl-x-4-map (kbd "t") 'transpose-windows) @@ -1950,8 +1950,7 @@ (add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh)) (global-diff-hl-mode 1) -(when (or (not (display-graphic-p)) (jao-colors-scheme-dark-p)) - (diff-hl-margin-mode 1)) +(diff-hl-margin-mode 1) ;;;; magit and forge (use-package magit -- cgit v1.2.3