A minimalist, layered color theme for Emacs
This theme is available on MELPA.
In a running Emacs instance, type:
M-x package-install
, hit Enter
, then type commentary-theme
, and hit
Enter
again.
Then, run M-x load-theme
, Enter
, commentary-theme
, and Enter
again.
With use-package, you can ensure the theme is installed before loading it:
;; ~/.emacs or ~/.emacs.d/init.el
(use-package commentary-theme
:ensure t)
(load-theme 'commentary t)