all repos ā€” nixfiles @ 1a9745d944dcaba2f78a7f6a5ea732328e0f1bdc

System and user configuration, managed by nix and home-manager

Merge branch 'master' of home:projects/dotfiles
Alan Pearce alan.pearce@spotcap.com
Fri, 29 Apr 2016 11:05:17 +0200
commit

1a9745d944dcaba2f78a7f6a5ea732328e0f1bdc

parent

162e80938621369086d6691bc5a4bd35024433a1

1 files changed, 6 insertions(+), 7 deletions(-)

jump to
M tag-emacs/emacs.d/init.org ā†’ tag-emacs/emacs.d/init.org
@@ -140,11 +140,10 @@ #+END_SRC 
 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 @@ ((eq system-type 'darwin)       (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)))