diff options
Diffstat (limited to 'emacs.d/init.el')
-rw-r--r-- | emacs.d/init.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index f8cab04..5bba424 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -91,6 +91,7 @@ ;; If there is more than one, they won't work right. '(default ((t (:inherit nil :stipple nil :background "#141414" :foreground "#C3D1D1" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 120 :width normal :foundry "unknown" :family "DejaVu Sans Mono")))) '(bold ((t (:weight bold)))) + '(compilation-column-number ((t (:foreground "gray40")))) '(cursor ((t (:background "grey80")))) '(diff-added ((t (:foreground "#859900")))) '(diff-file-header ((((class color) (min-colors 88) (background dark)) (:weight bold)))) @@ -100,6 +101,7 @@ '(diff-refine-removed ((t (:inherit diff-refine-change :foreground "red")))) '(diff-removed ((t (:foreground "#D30102")))) '(dired-directory ((t (:foreground "#268BD2")))) + '(diredp-compressed-file-suffix ((t (:foreground "gray50")))) '(diredp-date-time ((t (:foreground "#6c71c4")))) '(diredp-dir-heading ((t (:foreground "#4E9A06")))) '(diredp-dir-name ((t (:foreground "#3465A4")))) @@ -113,11 +115,12 @@ '(diredp-read-priv ((t (:foreground "gray70")))) '(diredp-symlink ((t (:foreground "#32E2E2")))) '(diredp-write-priv ((t (:foreground "gray90")))) + '(error ((t (:foreground "#DC322F" :weight bold)))) '(escape-glyph ((((background dark)) (:foreground "cyan")))) - '(font-lock-comment-face ((t (:foreground "#6C71C4")))) + '(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")))) - '(font-lock-function-name-face ((t (:foreground "#2AA198")))) + '(font-lock-function-name-face ((t (:foreground "#2aa198")))) '(font-lock-keyword-face ((t (:foreground "#839496")))) '(font-lock-preprocessor-face ((nil (:foreground "#D33682")))) '(font-lock-string-face ((t (:foreground "#CB4B16")))) @@ -151,6 +154,7 @@ '(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))))) + '(warning ((t (:foreground "#B58900" :weight bold)))) '(whitespace-newline ((t (:foreground "grey20" :weight normal)))) '(whitespace-space ((t (:foreground "grey20")))) '(whitespace-tab ((t (:foreground "grey20")))) |