My entire emacs setup is here
I loaded my init-theme.el file here
And supposedly that should make the darkclean theme available.
But when I type M-
I think you need to set custom-theme-directory
and then include the
sha256 hash in custom-safe-themes
to remove the confirmation prompt
everytime you load it. To insert the sha256 hash, you can use the
customize
interface, as then it is calculated for you. To enable the
theme, you will have to include it in custom-enabled-themes
.
Below is an example from my setup:
(custom-set-variables
;; ...
'(custom-enabled-themes (quote (dark-emacs)))
'(custom-safe-themes (quote ("" default)))
'(custom-theme-directory "~/.emacs.d/themes/")
)
To see my actual setup, take a look at the following links: