From 67dd9c881fa66cfbf17727a0e8668819a3f7c550 Mon Sep 17 00:00:00 2001 From: JSDurand Date: Wed, 11 Aug 2021 15:27:17 +0800 Subject: fix: basic - bookmark-fontify * basic.el (bookmark-fontify): This Emacs-28-specific option is annoying to me, as it causes an overlay to appear which is not so easy to dismiss immediately. --- basic.el | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/basic.el b/basic.el index bb09b3d..88ec3a1 100644 --- a/basic.el +++ b/basic.el @@ -1,7 +1,8 @@ -;;; -*- lexical-binding: t; -*- +;; -*- lexical-binding: t; -*- -;;; No limit in printing, since I oft want to print the results of -;;; evaluating expressions. +;;; No limit in printing + +;; I oft want to print the results of evaluating expressions. (set 'eval-expression-print-length nil) ;; A value of nil means no limit. (set 'eval-expression-print-level nil) ;; A value of nil means no limit. @@ -92,7 +93,7 @@ (setq use-dialog-box nil) ;;; don't make noise -;;; and when two buffers have the same base name, include more parts to distinguish them +;; and when two buffers have the same base name, include more parts to distinguish them (setq uniquify-buffer-name-style 'forward ring-bell-function #'ignore @@ -111,7 +112,10 @@ (define-key global-map (vector ?\H-b) #'bookmark-jump) (define-key global-map (vector ?\H-m) #'bookmark-set) -;; eshell +;; This colorized output is annoying to me. +(setq bookmark-fontify nil) + +;;; eshell (define-key global-map (vector ?\H-e) #'eshell) -- cgit v1.2.3-18-g5258