diff --git a/spacemacs-dark-theme.el b/spacemacs-dark-theme.el index 7b5e33f..f0842dc 100644 --- a/spacemacs-dark-theme.el +++ b/spacemacs-dark-theme.el @@ -1,4 +1,4 @@ -(require 'spacemacs-common) +(require 'spacemacs-themes) (deftheme spacemacs-dark "Spacemacs theme, the dark version") diff --git a/spacemacs-light-theme.el b/spacemacs-light-theme.el index 4b68588..dcae32c 100644 --- a/spacemacs-light-theme.el +++ b/spacemacs-light-theme.el @@ -1,4 +1,4 @@ -(require 'spacemacs-common) +(require 'spacemacs-themes) (deftheme spacemacs-light "Spacemacs theme, the light version") diff --git a/spacemacs-theme-pkg.el b/spacemacs-theme-pkg.el deleted file mode 100644 index 09a12e7..0000000 --- a/spacemacs-theme-pkg.el +++ /dev/null @@ -1 +0,0 @@ -(define-package "spacemacs-theme" "0.2" "Color theme with a dark and light versions" 'nil :url "https://github.com/nashamri/spacemacs-theme" :keywords '("color" "theme")) diff --git a/spacemacs-themes-pkg.el b/spacemacs-themes-pkg.el new file mode 100644 index 0000000..2691ba4 --- /dev/null +++ b/spacemacs-themes-pkg.el @@ -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")) diff --git a/spacemacs-common.el b/spacemacs-themes.el similarity index 99% rename from spacemacs-common.el rename to spacemacs-themes.el index 591e782..503a947 100644 --- a/spacemacs-common.el +++ b/spacemacs-themes.el @@ -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 @@ -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