diff options
author | Alan Pearce | 2017-06-19 12:30:21 +0200 |
---|---|---|
committer | Alan Pearce | 2017-06-19 12:30:21 +0200 |
commit | f82a7e7fcc485555f07cb5c9ca5e99e06ee04876 (patch) | |
tree | efb0aa632decf4e4bbb008d86dfb177534449020 | |
parent | c8b91e75cb3692b438d9c728080b15112b4e9989 (diff) | |
download | dotfiles-f82a7e7fcc485555f07cb5c9ca5e99e06ee04876.tar.lz dotfiles-f82a7e7fcc485555f07cb5c9ca5e99e06ee04876.tar.zst dotfiles-f82a7e7fcc485555f07cb5c9ca5e99e06ee04876.zip |
Emacs: Don't italicise font-lock strings in white-theme
-rw-r--r-- | emacs/.emacs.d/init.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 87d7039..b26e528 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -191,7 +191,8 @@ White-theme. Sounds like a good idea. (custom-theme-set-faces 'user '(git-gutter-fr:added ((t (:foreground "#96a4ab")))) '(git-gutter-fr:modified ((t (:foreground "#96a4ab")))) - '(git-gutter-fr:deleted ((t (:foreground "#96a4ab"))))))) + '(git-gutter-fr:deleted ((t (:foreground "#96a4ab")))) + '(font-lock-string-face ((t (:slant normal))))))) #+END_SRC Highlighting quasi-quoted expressions in lisps is quite useful, but I |