;;; init-theme.el --- Initialize custom theme -*- lexical-binding: t -*- ;;; Commentary: ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Creating-Custom-Themes.html ;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Custom-Themes.html ;; https://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/custom.el ;;; Code: (setq custom-theme-directory (locate-user-emacs-file "themes")) (load-theme 'simple "NO-CONFIRM") (provide 'init-theme) ;;; init-theme.el ends here