forked from flyingmachine/emacs-for-clojure
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mathias De Wachter
committed
Oct 15, 2014
1 parent
603613e
commit 063f54c
Showing
1,165 changed files
with
38,677 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
elpa/color-theme-solarized-20120301/color-theme-solarized-autoloads.el
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
1 change: 1 addition & 0 deletions
1
elpa/color-theme-solarized-20120301/color-theme-solarized-pkg.el
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
62
elpa/color-theme-solarized-20120301/color-theme-solarized.el
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Oops, something went wrong.