diff options
author | Alan Pearce | 2016-04-29 11:05:17 +0200 |
---|---|---|
committer | Alan Pearce | 2016-04-29 11:05:17 +0200 |
commit | 1a9745d944dcaba2f78a7f6a5ea732328e0f1bdc (patch) | |
tree | 07e55ae84e13c58a5eb352933e4d0ade2b8fa3d4 /tag-emacs | |
parent | 162e80938621369086d6691bc5a4bd35024433a1 (diff) | |
parent | c7956638db01c5e1fcd2530637ac6ab28dada54d (diff) | |
download | nixfiles-1a9745d944dcaba2f78a7f6a5ea732328e0f1bdc.tar.lz nixfiles-1a9745d944dcaba2f78a7f6a5ea732328e0f1bdc.tar.zst nixfiles-1a9745d944dcaba2f78a7f6a5ea732328e0f1bdc.zip |
Merge branch 'master' of home:projects/dotfiles
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 8e12d7c0..452a7347 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))) |