]> code.delx.au - gnu-emacs-elpa/blobdiff - ahungry-theme.el
Update with a couple helm colors
[gnu-emacs-elpa] / ahungry-theme.el
index 5ed8ffe50a09cc07b3e4cf236f6201d3e81a0f60..2b52fc4b93b4efc902a8ce6041042b66e0b18c04 100644 (file)
@@ -5,7 +5,7 @@
 ;; Author: Matthew Carter <m@ahungry.com>
 ;; Maintainer: Matthew Carter <m@ahungry.com>
 ;; URL: https://github.com/ahungry/color-theme-ahungry
-;; Version: 1.0.4
+;; Version: 1.0.5
 ;; Keywords: ahungry palette color theme emacs color-theme deftheme
 ;; Package-Requires: ((emacs "24"))
 
@@ -36,6 +36,9 @@
 
 ;;; News:
 
+;;;; Changes since 1.0.4:
+;; - Don't circumvent normal autoloads functionality, use the comment load method
+
 ;;;; Changes since 1.0.3:
 ;; - Manually include an autoloads file to make sure
 ;;   custom-theme-load-path is filled out
    '(magit-item-highlight ((t (:background "#111111" :slant normal :weight extra-bold :inverse-video nil))))
    '(minibuffer-prompt ((t (:foreground "#0055ff" :bold t))))
    '(web-mode-html-tag-bracket-face ((t (:foreground "#666666"))))
+   '(helm-selection ((t (:foreground "#0022ff" :bold t :background "#77ff00"))))
+   '(helm-match ((t (:foreground "gold1"))))
    )
   (custom-theme-set-variables
    'ahungry
    '(red "#ffffff"))
   )
 
+;;;###autoload
+(when (and load-file-name (boundp 'custom-theme-load-path))
+ (add-to-list
+      'custom-theme-load-path
+      (file-name-as-directory (file-name-directory load-file-name))))
+
 (provide-theme 'ahungry)
 
 ;;; ahungry-theme.el ends here