diff options
author | David Robillard <d@drobilla.net> | 2017-02-10 22:47:48 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-02-10 22:47:48 +0100 |
commit | 3325938252c51aaff009a48c90056883cbc8ac73 (patch) | |
tree | 32ead64b924bea1d83892b901d827d0c163c6375 | |
parent | 3d3fa7dd8c37807b2990e0945d759842db692c24 (diff) | |
download | dotfiles-3325938252c51aaff009a48c90056883cbc8ac73.tar.gz dotfiles-3325938252c51aaff009a48c90056883cbc8ac73.tar.bz2 dotfiles-3325938252c51aaff009a48c90056883cbc8ac73.zip |
Clean up fonts
-rw-r--r-- | emacs.d/init.el | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index ec6d291..9bffe57 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -180,9 +180,9 @@ '(diff-added ((t (:foreground "#859900")))) '(diff-file-header ((((class color) (min-colors 88) (background dark)) (:weight bold)))) '(diff-header ((((class color) (min-colors 88) (background dark)) (:foreground "#6C71C4")))) - '(diff-refine-added ((t (:inherit diff-refine-change :foreground "green")))) - '(diff-refine-change ((t (:background "grey15")))) - '(diff-refine-removed ((t (:inherit diff-refine-change :foreground "red")))) + '(diff-refine-added ((t (:inherit diff-refine-changed :foreground "green")))) + '(diff-refine-changed ((t (:background "grey15")))) + '(diff-refine-removed ((t (:inherit diff-refine-changed :foreground "red")))) '(diff-removed ((t (:foreground "#D30102")))) '(dired-directory ((t (:foreground "#268BD2")))) '(diredp-compressed-file-suffix ((t (:foreground "grey50")))) @@ -211,6 +211,11 @@ '(error ((t (:foreground "#DC322F" :weight bold)))) '(escape-glyph ((((background dark)) (:foreground "cyan")))) '(eshell-prompt ((t (:foreground "#859900" :weight bold)))) + '(font-latex-italic-face ((t (:inherit italic :foreground "#859900")))) + '(font-latex-math-face ((t (:foreground "#DC322F")))) + '(font-latex-sectioning-5-face ((t (:inherit nil :foreground "#B58900" :weight bold)))) + '(font-latex-string-face ((t (:foreground "#F2804F")))) + '(font-latex-warning-face ((t (:inherit bold :foreground "#FF6E64")))) '(font-lock-comment-face ((t (:foreground "#6c71c4")))) '(font-lock-constant-face ((((class color) (min-colors 88) (background dark)) (:weight bold)))) '(font-lock-doc-face ((t (:inherit font-lock-string-face :foreground "#6C71C4")))) @@ -255,7 +260,7 @@ '(powerline-inactive1 ((t (:inherit mode-line-inactive :background "#121717")))) '(powerline-inactive2 ((t (:inherit mode-line-inactive :background "#1D2222")))) '(region ((t (:background "#455900")))) - '(smerge-refined-change ((t (:background "grey20")))) + '(smerge-refined-changed ((t (:background "grey20")))) '(spaceline-highlight-face ((t (:background "#272A2A" :foreground "#FFFFFF" :inherit (quote mode-line))))) '(spaceline-modified ((t (:background "#A66" :foreground "#3E3D31" :inherit (quote mode-line))))) '(spaceline-unmodified ((t (:background "#777" :foreground "#3E3D31" :inherit (quote mode-line))))) |