From 8d965f9c123835c4aaae692d97f1a96f83c1a260 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 3 Feb 2024 06:10:16 +0000 Subject: [PATCH] nyxt: enable reduce-tracking-mode and force-https-mode by default Explicitly add emacs-mode glyph --- home/nyxt/config.lisp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/home/nyxt/config.lisp b/home/nyxt/config.lisp index a57fd764..b08fdc61 100644 --- a/home/nyxt/config.lisp +++ b/home/nyxt/config.lisp @@ -1,11 +1,14 @@ (define-configuration buffer - ((default-modes (pushnew 'nyxt/mode/blocker:blocker-mode %slot-value%)) - (default-modes (pushnew 'nyxt/mode/emacs:emacs-mode %slot-value%)))) + ((default-modes (pushnew 'nyxt/mode/emacs:emacs-mode %slot-value%)) + (default-modes (pushnew 'nyxt/mode/blocker:blocker-mode %slot-value%)) + (default-modes (pushnew 'nyxt/mode/reduce-tracking:reduce-tracking-mode %slot-value%)) + (default-modes (pushnew 'nyxt/mode/force-https:force-https-mode %slot-value%)))) (define-configuration status-buffer ((glyph-mode-presentation-p t) (display-tabs-by-last-access-p t))) +(define-configuration :emacs-mode ((glyph "ε"))) (define-configuration :force-https-mode ((glyph "ϕ"))) (define-configuration :user-script-mode ((glyph "u"))) (define-configuration :blocker-mode ((glyph "β")))