Only whitelist doom- prefixed themes

I find that I continually reach for the Doom themes rather than any of the
base16 or others.
This commit is contained in:
William Carroll 2020-01-17 10:24:45 +00:00
parent 190686fee1
commit cab39b89af

View file

@ -29,7 +29,10 @@
(defcustom colorscheme/whitelist
(cycle/from-list
(custom-available-themes))
(->> (custom-available-themes)
(list/map #'symbol-name)
(list/filter (>> (s-starts-with? "doom-")))
(list/map #'intern)))
"The whitelist of colorschemes through which to cycle.")
(defun colorscheme/current ()