summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/theme-setup.el
blob: 98152c4d3e5cc26d4f35b12b544f527bca249cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes")
(load-theme 'naysayer t)

(unless (package-installed-p 'acme-theme)
    (package-install 'acme-theme))

(use-package acme-theme
  :config
  (load-theme 'acme t))

(provide 'theme-setup)