diff options
author | 2018-11-11 22:01:21 -0500 | |
---|---|---|
committer | 2018-11-11 22:01:56 -0500 | |
commit | 0f3b91c15d52daecdc0775f46c340510f405a529 (patch) | |
tree | eb3b849c4e35c34ad2d0d86c5c31599b47f6089c /init.org | |
parent | ce842fdf5263e038c783fd5a18ba777088a9273c (diff) | |
download | configs-0f3b91c15d52daecdc0775f46c340510f405a529.tar.gz configs-0f3b91c15d52daecdc0775f46c340510f405a529.tar.xz configs-0f3b91c15d52daecdc0775f46c340510f405a529.zip |
[emacs] remove doom-modeline and eink-theme, use smart-mode-line
TODO: maybe look for another theme or create one
Diffstat (limited to '')
-rw-r--r-- | init.org | 18 |
1 files changed, 6 insertions, 12 deletions
@@ -1517,20 +1517,14 @@ Emacs package that displays available keybindings in popup :config (which-key-mode)) #+end_src -** [[https://github.com/seagle0128/doom-modeline][doom-modeline]] +** [[https://github.com/Malabarba/smart-mode-line][smart-mode-line]] #+begin_src emacs-lisp -(use-package doom-modeline - :demand t - :config (setq doom-modeline-height 32) - :hook (after-init . doom-modeline-init)) -#+end_src - -** [[https://github.com/maio/eink-emacs][eink-theme]] - -#+begin_src emacs-lisp -(setq doom-modeline-bar-width 5) -(load-theme 'eink t) +(use-package smart-mode-line + :config + (sml/setup) + ;; (sml/apply-theme 'light) + (remove-hook 'display-time-hook 'sml/propertize-time-string)) #+end_src ** [[https://github.com/bbatsov/crux][crux]] |