diff options
author | JSDurand <mmemmew@gmail.com> | 2021-08-11 15:27:17 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2021-08-11 15:28:43 +0800 |
commit | 67dd9c881fa66cfbf17727a0e8668819a3f7c550 (patch) | |
tree | 2159e80872f10123a86c9de1291a2555047b15d3 | |
parent | 32f58f09d0236f08f04b9c4e1b15313a0cd00eee (diff) |
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.
-rw-r--r-- | basic.el | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -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) |