mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-22 16:04:25 +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
|
:no-require t
|
||||||
:init
|
:init
|
||||||
(setq modus-vivendi-theme-override-colors-alist
|
(setq modus-vivendi-theme-override-colors-alist
|
||||||
'(("bg-main" . "#111519")))
|
'(("bg-main" . "#111519"))))
|
||||||
:config
|
|
||||||
(load-theme 'modus-vivendi t))
|
|
||||||
#+END_SRC
|
#+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.
|
Enable ~doom-modeline~, much better than the default and unlike ~powerline~ it's usable with TRAMP, so that's great.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package doom-modeline
|
(use-package doom-modeline
|
||||||
:straight t
|
:straight t
|
||||||
:config
|
:config
|
||||||
(doom-modeline-mode))
|
(doom-modeline-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Only show buffer encoding conditionally, there's no reason to have ~LF UTF-8~ down there, rather only show when the
|
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