Last active
March 16, 2018 14:59
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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