mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-21 23:54:22 +01:00
Switch themes
Signed-off-by: magic_rb <magic_rb@redalder.org>
This commit is contained in:
parent
5bab4071fd
commit
3a2e719b9c
|
@ -34,18 +34,37 @@ on the eyes.
|
|||
:no-require t
|
||||
:init
|
||||
(setq modus-vivendi-theme-override-colors-alist
|
||||
'(("bg-main" . "#111519")))
|
||||
:config
|
||||
(load-theme 'modus-vivendi t))
|
||||
'(("bg-main" . "#111519"))))
|
||||
#+END_SRC
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package ef-themes
|
||||
:straight t)
|
||||
#+end_src
|
||||
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package themes
|
||||
:no-require t
|
||||
:after (ef-themes)
|
||||
:config
|
||||
(load-theme 'modus-vivendi t t)
|
||||
(load-theme 'modus-operandi t t)
|
||||
(load-theme 'ef-winter t t)
|
||||
(load-theme 'ef-autumn t t)
|
||||
(enable-theme 'ef-winter))
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: t
|
||||
|
||||
Enable ~doom-modeline~, much better than the default and unlike ~powerline~ it's usable with TRAMP, so that's great.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package doom-modeline
|
||||
:straight t
|
||||
:config
|
||||
(doom-modeline-mode))
|
||||
(use-package doom-modeline
|
||||
:straight t
|
||||
:config
|
||||
(doom-modeline-mode))
|
||||
#+END_SRC
|
||||
|
||||
Only show buffer encoding conditionally, there's no reason to have ~LF UTF-8~ down there, rather only show when the
|
||||
|
|
Loading…
Reference in a new issue