diff options
author | 2019-09-29 11:49:34 -0400 | |
---|---|---|
committer | 2019-09-29 11:49:34 -0400 | |
commit | d4afaf1b403152c401cac88530d4a6447aff3424 (patch) | |
tree | e9d5c207cafdd8709553430d9f9399d29bab7a0f /.emacs.d/init.el | |
parent | 0b085e06dcb4dcea33c7d11cb6787164b277547e (diff) | |
download | configs-d4afaf1b403152c401cac88530d4a6447aff3424.tar.gz configs-d4afaf1b403152c401cac88530d4a6447aff3424.tar.xz configs-d4afaf1b403152c401cac88530d4a6447aff3424.zip |
emacs: switch back to smart-mode-line
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r-- | .emacs.d/init.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 746ca44..68a6049 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1517,7 +1517,6 @@ This function is intended for use with `ivy-ignore-buffers'." (load-theme 'tangomod t) (use-package smart-mode-line - :disabled :commands (sml/apply-theme) :demand :config @@ -1539,6 +1538,7 @@ This function is intended for use with `ivy-ignore-buffers'." (load-theme 'solarized-light t)) (use-package moody + :disabled :demand :config (setq x-underline-at-descent-line t) @@ -1569,7 +1569,7 @@ This function is intended for use with `ivy-ignore-buffers'." (interactive) (mapc #'disable-theme custom-enabled-themes) (load-theme 'tangomod t) - ;; (sml/apply-theme 'automatic) + (sml/apply-theme 'automatic) (font-lock-remove-keywords 'org-mode b/org-mode-font-lock-keywords)) @@ -1578,7 +1578,7 @@ This function is intended for use with `ivy-ignore-buffers'." (interactive) (mapc #'disable-theme custom-enabled-themes) (load-theme 'doom-one t) - ;; (sml/apply-theme 'automatic) + (sml/apply-theme 'automatic) (font-lock-add-keywords 'org-mode b/org-mode-font-lock-keywords t)) |