summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2022-06-18 18:11:49 +0100
committerjao <jao@gnu.org>2022-06-18 18:11:49 +0100
commitf74cddafe5f2d5df33fbf81815c7e024d8c7a10d (patch)
tree74215f063c6d559f8207ebf394bd87ab6c12b42c
parentb7c0513998ca991c9216f0c56c5c0b31efc40400 (diff)
downloadelibs-f74cddafe5f2d5df33fbf81815c7e024d8c7a10d.tar.gz
elibs-f74cddafe5f2d5df33fbf81815c7e024d8c7a10d.tar.bz2
nits
-rw-r--r--custom/jao-custom-notmuch.el2
-rw-r--r--data/kitty.conf4
-rw-r--r--init.el5
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