Skip to content

Commit

Permalink
elpy 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias De Wachter committed Oct 15, 2014
1 parent 603613e commit 063f54c
Show file tree
Hide file tree
Showing 1,165 changed files with 38,677 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
;;; color-theme-solarized-autoloads.el --- automatically extracted autoloads
;;
;;; Code:


;;;### (autoloads (color-theme-solarized-light color-theme-solarized-dark
;;;;;; color-theme-solarized) "color-theme-solarized" "color-theme-solarized.el"
;;;;;; (21566 45255 899010 0))
;;; Generated autoloads from color-theme-solarized.el

(autoload 'color-theme-solarized "color-theme-solarized" "\
Color theme by Ethan Schoonover, created 2011-03-24.
Ported to Emacs by Greg Pfeil, http://ethanschoonover.com/solarized.
\(fn MODE)" t nil)

(autoload 'color-theme-solarized-dark "color-theme-solarized" "\
\(fn)" t nil)

(autoload 'color-theme-solarized-light "color-theme-solarized" "\
\(fn)" t nil)

(when (boundp 'custom-theme-load-path) (add-to-list 'custom-theme-load-path (file-name-as-directory (file-name-directory load-file-name))))

;;;***

;;;### (autoloads nil nil ("color-theme-solarized-pkg.el" "solarized-dark-theme.el"
;;;;;; "solarized-definitions.el" "solarized-light-theme.el") (21566
;;;;;; 45255 922378 206000))

;;;***

(provide 'color-theme-solarized-autoloads)
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; color-theme-solarized-autoloads.el ends here
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(define-package "color-theme-solarized" "20120301" "Solarized themes for Emacs")
Binary file not shown.
62 changes: 62 additions & 0 deletions elpa/color-theme-solarized-20120301/color-theme-solarized.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
;;; Author: Ethan Schoonover, Solarized; Greg Pfeil, Emacs adaptation
;;; URL: http://ethanschoonover.com/solarized

;;; This file is not (YET) part of GNU Emacs.

;;; # Usage

;;; 1. Install the color-theme package
;;; (http://www.emacswiki.org/cgi-bin/wiki/ColorTheme)
;;; 2. Load this file
;;; 3. M-x color-theme-solarized-[dark|light]

(require 'solarized-definitions
(let* ((reqname (concat (file-name-directory (or load-file-name
buffer-file-name))
"solarized-definitions.el"))
(compreqname (concat reqname "c")))
(if (file-exists-p compreqname) compreqname reqname)))

(eval-when-compile
(require 'color-theme))

;;;###autoload
(defun color-theme-solarized (mode)
"Color theme by Ethan Schoonover, created 2011-03-24.
Ported to Emacs by Greg Pfeil, http://ethanschoonover.com/solarized."
(interactive "Slight or dark? ")
(color-theme-install
(let* ((definitions (solarized-color-definitions mode))
(faces (first definitions))
(variables (second definitions)))
(solarized-color-definitions mode)
`(,(intern (concat "color-theme-solarized-" (symbol-name mode)))
,variables
,@faces))))

;;;###autoload
(defun color-theme-solarized-dark ()
(interactive)
(color-theme-solarized 'dark))

;;;###autoload
(defun color-theme-solarized-light ()
(interactive)
(color-theme-solarized 'light))


;;;###autoload
(when (boundp 'custom-theme-load-path)
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))

(add-to-list 'color-themes
`(color-theme-solarized-light
"Solarized Light"
,solarized-description))
(add-to-list 'color-themes
`(color-theme-solarized-dark
"Solarized Dark"
,solarized-description))

(provide 'color-theme-solarized)
5 changes: 5 additions & 0 deletions elpa/color-theme-solarized-20120301/solarized-dark-theme.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
(require 'solarized-definitions
(locate-file "solarized-definitions.el" custom-theme-load-path
'("c" "")))

(create-solarized-theme dark)
Binary file not shown.
Loading

0 comments on commit 063f54c

Please sign in to comment.