Skip to content

Commit

Permalink
Don't change where the themes are defined
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Feb 20, 2024
1 parent 7aa45c3 commit 1e6539f
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
6 changes: 0 additions & 6 deletions color-theme-sanityinc-tomorrow.el
Original file line number Diff line number Diff line change
Expand Up @@ -1672,12 +1672,6 @@ names to which it refers are bound."
(let ((name (color-theme-sanityinc-tomorrow--theme-name variant)))
(custom-set-variables `(custom-enabled-themes '(,name)))))

(color-theme-sanityinc-tomorrow--define-theme night)
(color-theme-sanityinc-tomorrow--define-theme day)
(color-theme-sanityinc-tomorrow--define-theme eighties)
(color-theme-sanityinc-tomorrow--define-theme blue)
(color-theme-sanityinc-tomorrow--define-theme bright)

;;;###autoload
(when (boundp 'custom-theme-load-path)
(add-to-list 'custom-theme-load-path
Expand Down
1 change: 1 addition & 0 deletions sanityinc-tomorrow-blue-theme.el
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
;;; -*- lexical-binding: t -*-
(require 'color-theme-sanityinc-tomorrow)
(color-theme-sanityinc-tomorrow--define-theme blue)
1 change: 1 addition & 0 deletions sanityinc-tomorrow-bright-theme.el
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
;;; -*- lexical-binding: t -*-
(require 'color-theme-sanityinc-tomorrow)
(color-theme-sanityinc-tomorrow--define-theme bright)
1 change: 1 addition & 0 deletions sanityinc-tomorrow-day-theme.el
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
;;; -*- lexical-binding: t -*-
(require 'color-theme-sanityinc-tomorrow)
(color-theme-sanityinc-tomorrow--define-theme day)
1 change: 1 addition & 0 deletions sanityinc-tomorrow-eighties-theme.el
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
;;; -*- lexical-binding: t -*-
(require 'color-theme-sanityinc-tomorrow)
(color-theme-sanityinc-tomorrow--define-theme eighties)
1 change: 1 addition & 0 deletions sanityinc-tomorrow-night-theme.el
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
;;; -*- lexical-binding: t -*-
(require 'color-theme-sanityinc-tomorrow)
(color-theme-sanityinc-tomorrow--define-theme night)

0 comments on commit 1e6539f

Please sign in to comment.