solarized-emacs

a fork of Bozhidar Batsov's solarized-emacs
git clone https://git.trogloxene.org/solarized-emacs.git
Log | Files | Refs | README

commit c2d7ae2bbd5215f9dfbc3711be0158749df35b4c
parent 9bf1e32df732359db90182f3447018e1434ff4bd
Author: conao3 <conao3@gmail.com>
Date:   Wed,  6 Nov 2019 11:55:06 +0900

include pkg file into solarized.el header

to well recognized by MELPA

Diffstat:
Dsolarized-theme-pkg.el | 5-----
Msolarized-theme.el | 45+++++++++++++++++++++++++++++++++++++++++++++
Msolarized.el | 23+++--------------------
3 files changed, 48 insertions(+), 25 deletions(-)

diff --git a/solarized-theme-pkg.el b/solarized-theme-pkg.el @@ -1,5 +0,0 @@ -(define-package - "solarized-theme" - "1.2.2" - "The Solarized color theme, ported to Emacs." - '((emacs "24.1") (cl-lib "0.5") (dash "2.6.0"))) diff --git a/solarized-theme.el b/solarized-theme.el @@ -1,2 +1,47 @@ +;;; solarized-theme.el --- The Solarized color theme + +;; Copyright (C) 2011-2019 Bozhidar Batsov + +;; Author: Bozhidar Batsov <bozhidar@batsov.com> +;; Author: Thomas Frössman <thomasf@jossystem.se> +;; URL: http://github.com/bbatsov/solarized-emacs +;; Version: 1.3.0 +;; Package-Requires: ((emacs "24.1") (dash "2.16")) +;; Keywords: convenience, themes, solarized + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see <http://www.gnu.org/licenses/>. + +;;; Commentary: +;; +;; A port of Solarized to Emacs. +;; +;;; Installation: +;; +;; Drop the `solarized-theme.el` somewhere in your `load-path` and +;; the two themes in a folder that is on `custom-theme-load-path' +;; and enjoy! +;; +;; Don't forget that the theme requires Emacs 24. +;; +;;; Credits +;; +;; Ethan Schoonover created the original theme for vim on such this port +;; is based. +;; +;;; Code: + (require 'solarized) + (provide 'solarized-theme) +;;; solarized-theme.el ends here diff --git a/solarized.el b/solarized.el @@ -4,10 +4,6 @@ ;; Author: Bozhidar Batsov <bozhidar@batsov.com> ;; Author: Thomas Frössman <thomasf@jossystem.se> -;; URL: http://github.com/bbatsov/solarized-emacs -;; Version: 1.3.0 -;; Package-Requires: ((emacs "24.1") (dash "2.16")) -;; Keywords: convenience, themes, solarized ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -23,22 +19,9 @@ ;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;;; Commentary: -;; -;; A port of Solarized to Emacs. -;; -;;; Installation: -;; -;; Drop the `solarized-theme.el` somewhere in your `load-path` and -;; the two themes in a folder that is on `custom-theme-load-path' -;; and enjoy! -;; -;; Don't forget that the theme requires Emacs 24. -;; -;;; Credits -;; -;; Ethan Schoonover created the original theme for vim on such this port -;; is based. -;; + +;; Main solarized file + ;;; Code: (require 'dash)