Pull in doom-themes and use doom-modeline instead of smart-mode-line

This commit is contained in:
Jeremy Dormitzer 2020-01-02 19:54:41 -05:00
parent 39c6c8eae0
commit c6f33fcd1a

View File

@ -63,6 +63,15 @@ Solarized is the best color scheme, objectively speaking:
(require 'solarized-theme)
#+END_SRC
* Doom themes
#+BEGIN_SRC emacs-lisp
(use-package doom-themes)
(use-package doom-modeline
:init
(doom-modeline-mode 1))
#+END_SRC
* Customization File
I don't want anything to write to my init.el, so save customizations in a separate file:
#+BEGIN_SRC emacs-lisp
@ -216,6 +225,7 @@ A framework for creating Magit-style popups:
#+BEGIN_SRC emacs-lisp
(use-package transient)
#+END_SRC
* Magit
Magit is objectively the best Git interface.
#+BEGIN_SRC emacs-lisp
@ -1361,13 +1371,6 @@ Integrate Google calendar with org-mode:
#+END_SRC
* Mode line
A sexy mode line for maximum geek cred:
#+BEGIN_SRC emacs-lisp
(use-package smart-mode-line
:init
(sml/setup))
#+END_SRC
* UI
Get rid of the janky buttons:
#+BEGIN_SRC emacs-lisp