diff options
Diffstat (limited to 'emacs.d')
-rw-r--r-- | emacs.d/drobillized-theme.el | 40 | ||||
-rw-r--r-- | emacs.d/init.el | 2 |
2 files changed, 40 insertions, 2 deletions
diff --git a/emacs.d/drobillized-theme.el b/emacs.d/drobillized-theme.el index 3878237..8883936 100644 --- a/emacs.d/drobillized-theme.el +++ b/emacs.d/drobillized-theme.el @@ -134,18 +134,56 @@ Reload the theme after changing anything in this group." `(jabber-title-medium ((t (:weight bold :height 1.0 :width expanded)))) `(link ((((class color) (min-colors 88) (background dark)) (:foreground ,blue :inverse-video nil :underline t)))) `(link-visited ((default (:inherit link)) (((class color) (background dark)) (:foreground ,violet)))) + `(magit-bisect-bad ((t (:foreground ,red)))) + `(magit-bisect-good ((t (:foreground ,green)))) + `(magit-bisect-skip ((t (:foreground ,yellow)))) + `(magit-blame-heading ((t (:background "grey15" :foreground "grey80")))) `(magit-branch-current ((t (:inherit magit-branch-local :box 1)))) - `(magit-branch-local ((t (:foreground ,cyan-l)))) + `(magit-branch-local ((t (:foreground ,cyan)))) + `(magit-branch-remote ((t (:foreground ,green)))) + `(magit-cherry-equivalent ((t (:foreground ,magenta-d)))) + `(magit-cherry-unmatched ((t (:foreground ,cyan-d)))) `(magit-diff-added ((t (:foreground ,green)))) `(magit-diff-added-highlight ((t (:foreground ,green)))) + `(magit-diff-base ((t (:background ,green-d :foreground "gray80")))) + `(magit-diff-base-highlight ((t (:background ,green-d :foreground "white")))) `(magit-diff-context ((t (:foreground "grey70")))) `(magit-diff-context-highlight ((t (:foreground "grey80")))) + `(magit-diff-file-heading-selection ((t (:inherit magit-diff-file-heading-highlight :foreground ,red)))) `(magit-diff-hunk-heading ((t (:foreground ,violet)))) `(magit-diff-hunk-heading-highlight ((t (:foreground ,violet :weight bold)))) + `(magit-diff-hunk-heading-selection ((t (:inherit magit-diff-hunk-heading-highlight :foreground ,red)))) + `(magit-diff-lines-heading ((t (:inherit magit-diff-hunk-heading-highlight :background ,red :foreground "grey80")))) `(magit-diff-removed ((t (:foreground ,red)))) `(magit-diff-removed-highlight ((t (:foreground "red")))) + `(magit-diffstat-added ((t (:inherit diff-added)))) + `(magit-diffstat-removed ((t (:inherit diff-removed)))) `(magit-item-highlight ((t (:background "grey15")))) + `(magit-log-author ((t (:foreground ,red)))) + `(magit-process-ng ((t (:inherit magit-section-heading :foreground ,red)))) + `(magit-process-ok ((t (:inherit magit-section-heading :foreground ,green)))) + `(magit-reflog-amend ((t (:foreground ,magenta)))) + `(magit-reflog-checkout ((t (:foreground ,blue)))) + `(magit-reflog-cherry-pick ((t (:foreground ,green)))) + `(magit-reflog-commit ((t (:foreground ,green)))) + `(magit-reflog-merge ((t (:foreground ,green)))) + `(magit-reflog-other ((t (:foreground ,cyan)))) + `(magit-reflog-rebase ((t (:foreground ,magenta)))) + `(magit-reflog-remote ((t (:foreground ,cyan)))) + `(magit-reflog-reset ((t (:foreground ,red)))) `(magit-section-heading ((t (:foreground ,green :weight bold)))) + `(magit-section-heading-selection ((t (:foreground ,red)))) + `(magit-sequence-drop ((t (:foreground ,red)))) + `(magit-sequence-head ((t (:foreground ,blue)))) + `(magit-sequence-part ((t (:foreground ,yellow)))) + `(magit-sequence-stop ((t (:foreground ,green)))) + `(magit-signature-bad ((t (:foreground ,red :weight bold)))) + `(magit-signature-error ((t (:foreground ,red)))) + `(magit-signature-expired ((t (:foreground ,orange)))) + `(magit-signature-good ((t (:foreground ,green)))) + `(magit-signature-revoked ((t (:foreground ,violet)))) + `(magit-signature-untrusted ((t (:foreground ,cyan)))) + `(magit-tag ((t (:foreground ,yellow)))) `(magit-section-highlight ((t (:background "grey15")))) `(minibuffer-prompt ((((background dark)) (:foreground "white")))) `(mode-line ((t (:background "#2D3232" :foreground "#AFB3B2" :box (:line-width 2 :color "#1A1A1A"))))) diff --git a/emacs.d/init.el b/emacs.d/init.el index c8df396..8b77eb2 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -100,7 +100,7 @@ '(custom-enabled-themes (quote (drobillized))) '(custom-safe-themes (quote - ("cecb1078bb6155e230e45bb50804e8728c9a1202309d85e3704dfcc2977ff9e3" "d29fac0d9dea908c1353c00f4cdc5659c4e8b800405ce55652ae446f08819c32" default))) + ("dff1438d7fe59ceebfe04b8a71eaeb1c874d0608fcaefb64f3c6a12556e8acd9" default))) '(delete-old-versions t) '(dired-listing-switches "-al --time-style=long-iso") '(dired-omit-files "^\\.?#\\|^\\.$\\|^\\.\\.\\|^\\..*$") |