(load-theme 'tangomod t)
(use-package smart-mode-line
- :disabled
:commands (sml/apply-theme)
:demand
:config
+ (setq sml/theme 'tangomod)
(sml/setup)
(smart-mode-line-enable))
(load-theme 'solarized-light t))
(use-package moody
+ :disabled
:demand
:config
(setq x-underline-at-descent-line t)
(moody-replace-mode-line-buffer-identification)
(moody-replace-vc-mode))
+(use-package mini-modeline
+ :disabled
+ :demand
+ :config (mini-modeline-mode))
+
(defvar b/org-mode-font-lock-keywords
'(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
(1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
(interactive)
(mapc #'disable-theme custom-enabled-themes)
(load-theme 'tangomod t)
- ;; (sml/apply-theme 'automatic)
+ (sml/apply-theme 'tangomod)
(font-lock-remove-keywords
'org-mode b/org-mode-font-lock-keywords))
(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))