diff options
Diffstat (limited to 'basic.el')
-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) |