summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d/init.org
diff options
context:
space:
mode:
authorAlan Pearce2016-04-29 11:05:17 +0200
committerAlan Pearce2016-04-29 11:05:17 +0200
commit1a9745d944dcaba2f78a7f6a5ea732328e0f1bdc (patch)
tree07e55ae84e13c58a5eb352933e4d0ade2b8fa3d4 /tag-emacs/emacs.d/init.org
parent162e80938621369086d6691bc5a4bd35024433a1 (diff)
parentc7956638db01c5e1fcd2530637ac6ab28dada54d (diff)
downloaddotfiles-1a9745d944dcaba2f78a7f6a5ea732328e0f1bdc.tar.lz
dotfiles-1a9745d944dcaba2f78a7f6a5ea732328e0f1bdc.tar.zst
dotfiles-1a9745d944dcaba2f78a7f6a5ea732328e0f1bdc.zip
Merge branch 'master' of home:projects/dotfiles
Diffstat (limited to 'tag-emacs/emacs.d/init.org')
-rw-r--r--tag-emacs/emacs.d/init.org13
1 files changed, 6 insertions, 7 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 8e12d7c..452a734 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -140,11 +140,10 @@ in modes for webdev because [[web-mode]] includes that functionality.
 
 Highlighting quasi-quoted expressions in lisps is quite useful.
 #+BEGIN_SRC emacs-lisp
-(use-package highlight-stages
-  :defer t
-  :diminish highlight-stages-mode
-  :init (progn
-          (add-hook 'lisp-mode-common-hook #'highlight-stages-mode)))
+  (use-package highlight-stages
+    :diminish highlight-stages-mode
+    :config (progn
+              (add-hook 'lisp-mode-common-hook #'highlight-stages-mode)))
 #+END_SRC
 
 ** Fonts
@@ -177,8 +176,8 @@ because I manage those in my [[file:~/projects/dotfiles/tag-xresources/xresource
       (ap/set-fonts "Source Code Pro" 14 "Input Sans" 14))))
 #+END_SRC
 
-Reduce font locking in dired mode in particular.  I might want to
-re-increase it in other places, but in dired the maximum is too high
+Reduce font decoration.  I’m trying to see whether this helps me focus
+on the right things.
 #+BEGIN_SRC emacs-lisp
   (setq font-lock-maximum-decoration '((dired-mode . 1)
                                        (t . 1)))