mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Ever since I started using persp-mode, launching Emacs in a terminal has made it restore the same set of open files as in my main GUI instance of Emacs. This hasn't been a big deal, but still somewhat annoying. I've finally gotten around to disabling persp-mode's auto save/load feature when running Emacs in a terminal. And for good measure, I also set the theme to be doom-vibrant in the terminal too. My old tomorrow-night-paradise is way out of date, and nowhere near as good as doom-vibrant.
17 lines
353 B
EmacsLisp
17 lines
353 B
EmacsLisp
;;; siren-core-theme.el --- jimeh's Emacs Siren: Theme loading.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Load the theme!
|
|
|
|
;;; Code:
|
|
|
|
(setq siren-themes-dir (expand-file-name "themes" siren-dir))
|
|
(siren-recursive-add-to-load-path siren-themes-dir)
|
|
|
|
;; Use doom-vibrant theme
|
|
(require 'siren-theme-doom-vibrant)
|
|
|
|
(provide 'siren-core-theme)
|
|
;;; siren-core-theme.el ends here
|