Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use plural in package name and add matching library #199

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spacemacs-dark-theme.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(require 'spacemacs-common)
(require 'spacemacs-themes)

(deftheme spacemacs-dark "Spacemacs theme, the dark version")

Expand Down
2 changes: 1 addition & 1 deletion spacemacs-light-theme.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(require 'spacemacs-common)
(require 'spacemacs-themes)

(deftheme spacemacs-light "Spacemacs theme, the light version")

Expand Down
1 change: 0 additions & 1 deletion spacemacs-theme-pkg.el

This file was deleted.

5 changes: 5 additions & 0 deletions spacemacs-themes-pkg.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
(define-package "spacemacs-themes" "0.2"
"Color theme with a dark and light versions."
nil
:url "https://github.com/nashamri/spacemacs-theme"
:keywords '("color" "theme"))
6 changes: 3 additions & 3 deletions spacemacs-common.el → spacemacs-themes.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; spacemacs-common.el --- Color theme with a dark and light versions.
;;; spacemacs-themes.el --- Color theme with a dark and light versions.

;; Copyright (C) 2015-2018 Nasser Alshammari

Expand Down Expand Up @@ -1060,10 +1060,10 @@ to 'auto, tags may not be properly aligned. "
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))

(provide 'spacemacs-common)
(provide 'spacemacs-themes)

;; Local Variables:
;; no-byte-compile: t
;; End:

;;; spacemacs-common.el ends here
;;; spacemacs-themes.el ends here