Emacs color theme inspired by the woods. It is mostly a direct port of Miasma theme.
(unless (package-installed-p 'vc-use-package)
(package-vc-install "https://github.com/slotThe/vc-use-package"))
(require 'vc-use-package)
(use-package miasma-theme
:vc (:fetcher github :repo daut/miasma-theme.el)
:config
(load-theme 'miasma t))
In Emacs 30 vc-use-package
is part of the use-package
so no need to install vc-use-package
.
(use-package miasma-theme
:vc (:url "https://github.com/daut/miasma-theme.el")
:config
(load-theme 'miasma t))
Download miasma-theme.el
file to the ~/.emacs.d/themes/
directory. Add these lines to your init.el
file.
(add-to-list 'custom-theme-load-path (concat user-emacs-directory "/themes/"))
(load-theme 'miasma t)