update solarized for emacs
authorJoerg Jaspert <joerg@debian.org>
Tue, 26 Mar 2013 22:24:34 +0000 (23:24 +0100)
committerJoerg Jaspert <joerg@debian.org>
Tue, 26 Mar 2013 22:24:34 +0000 (23:24 +0100)
elisp/emacs-color-theme-solarized/color-theme-solarized-autoloads.el [new file with mode: 0644]
elisp/emacs-color-theme-solarized/color-theme-solarized-pkg.el
elisp/emacs-color-theme-solarized/solarized-definitions.el

diff --git a/elisp/emacs-color-theme-solarized/color-theme-solarized-autoloads.el b/elisp/emacs-color-theme-solarized/color-theme-solarized-autoloads.el
new file mode 100644 (file)
index 0000000..b54ea1e
--- /dev/null
@@ -0,0 +1,49 @@
+;;; color-theme-solarized-autoloads.el --- automatically extracted autoloads
+;;
+;;; Code:
+
+\f
+;;;### (autoloads (color-theme-solarized-light color-theme-solarized-dark
+;;;;;;  color-theme-solarized) "color-theme-solarized" "color-theme-solarized.el"
+;;;;;;  (20818 6659 297107 925000))
+;;; 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)
+
+;;;***
+\f
+;;;### (autoloads nil "solarized-definitions" "solarized-definitions.el"
+;;;;;;  (20818 6659 381108 341000))
+;;; Generated autoloads from solarized-definitions.el
+
+(when (boundp 'custom-theme-load-path) (add-to-list 'custom-theme-load-path (file-name-as-directory (file-name-directory load-file-name))))
+
+;;;***
+\f
+;;;### (autoloads nil nil ("color-theme-solarized-pkg.el" "solarized-dark-theme.el"
+;;;;;;  "solarized-light-theme.el") (20818 6659 467471 558000))
+
+;;;***
+\f
+(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
index 850550e..f9d0934 100644 (file)
@@ -1 +1,3 @@
-(define-package "color-theme-solarized" "%%version%%" "Solarized themes for Emacs" '((color-theme "6.5.5")))
+(define-package "color-theme-solarized" "20130307.1350" "Solarized themes for Emacs [source: github]"
+  '((color-theme "6.5.5")))
+
index d6b1a5c..2f588ed 100644 (file)
@@ -353,6 +353,9 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further."
              (widget-single-line-field ((t (:inherit widget-field))))
              ;; extra modules
              ;; -------------
+            ;; bm visual bookmarks
+            (bm-fringe-face ((t (,@bg-orange ,@fg-base03))))
+            (bm-fringe-persistent-face ((t (,@bg-blue ,@fg-base03))))
              ;; Flymake
              (flymake-errline ((t (,@fmt-revr ,@fg-red ,@bg-back)))) ; ErrorMsg
              (flymake-warnline ; WarningMsg
@@ -378,6 +381,10 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further."
              (jabber-roster-user-offline ((t (,@fg-base01))))
              (jabber-roster-user-online ((t (,@fmt-bold ,@fg-blue))))
              (jabber-roster-user-xa ((t (,@fmt-ital ,@fg-magenta))))
+            ;; git-gutter
+            (git-gutter:modified ((t (,@fg-violet))))
+            (git-gutter:added ((t (,@fg-green))))
+            (git-gutter:deleted ((t (,@fg-red))))
              ;; gnus - these are taken from mutt, not VIM
              (gnus-cite-1 ((t (,@fmt-none ,@fg-blue)))) ; quoted
              (gnus-cite-2 ((t (,@fmt-none ,@fg-cyan)))) ; quoted1
@@ -514,13 +521,23 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further."
              (font-latex-sectioning-5-face ((t (,@fg-violet))))
              ;;flyspell
              (flyspell-incorrect ((t (,@fg-red))))
-             (flyspell-duplicate ((t (,@fg-yellow)))))
+             (flyspell-duplicate ((t (,@fg-yellow))))
+            ;;ansi-term
+            (term-color-black ((t ( ,@fg-base02))))
+            (term-color-red ((t ( ,@fg-red))))
+            (term-color-green ((t ( ,@fg-green))))
+            (term-color-yellow ((t ( ,@fg-yellow))))
+            (term-color-blue ((t ( ,@fg-blue))))
+            (term-color-magenta ((t ( ,@fg-magenta))))
+            (term-color-cyan ((t ( ,@fg-cyan))))
+            (term-color-white ((t ( ,@fg-base00)))))
 
             ((foreground-color . ,(when (<= 16 (display-color-cells)) base0))
              (background-color . ,back)
              (background-mode . ,mode)
              (cursor-color . ,(when (<= 16 (display-color-cells))
-                                base0)))))))))
+                                base0))
+            (ansi-color-names-vector . [,base02 ,red ,green ,yellow ,blue ,magenta ,cyan ,base00]))))))))
 
 (defmacro create-solarized-theme (mode)
   (let* ((theme-name (intern (concat "solarized-" (symbol-name mode))))