Skip to content

Instantly share code, notes, and snippets.

@NateEag
Last active March 16, 2018 14:59
Show Gist options
  • Save NateEag/61640cb97804e65188cd16cc06a00af4 to your computer and use it in GitHub Desktop.
Save NateEag/61640cb97804e65188cd16cc06a00af4 to your computer and use it in GitHub Desktop.
use-package invocations to show issue with moody and solarized-theme's dark variations
;; Configure solarized-theme package as suggested
(use-package solarized-theme
:config
;; Use solarized-dark instead of solarized-light
(load-theme 'solarized-dark t)
(let ((line (face-attribute 'mode-line :underline)))
(set-face-attribute 'mode-line nil :overline line)
(set-face-attribute 'mode-line-inactive nil :overline line)
(set-face-attribute 'mode-line-inactive nil :underline line)
(set-face-attribute 'mode-line nil :box nil)
(set-face-attribute 'mode-line-inactive nil :box nil)))
;; Now configure moody.
(use-package moody
:config
(setq x-underline-at-descent-line t)
(moody-replace-mode-line-buffer-identification)
(moody-replace-vc-mode))
;; Note the weird artifacts at the corners.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment