-
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.
20180618 for Emacs25.3x64 plugins update
- Loading branch information
1 parent
5b3037b
commit f021bc7
Showing
675 changed files
with
4,609 additions
and
4,311 deletions.
There are no files selected for viewing
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
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
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
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
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,28 @@ | ||
;;; abyss-theme-autoloads.el --- automatically extracted autoloads | ||
;; | ||
;;; Code: | ||
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path)))) | ||
|
||
;;;### (autoloads nil "abyss-theme" "abyss-theme.el" (23336 41198 | ||
;;;;;; 0 0)) | ||
;;; Generated autoloads from abyss-theme.el | ||
|
||
(when load-file-name (add-to-list 'custom-theme-load-path (file-name-as-directory (file-name-directory load-file-name)))) | ||
|
||
(autoload 'abyss-theme "abyss-theme" "\ | ||
Load abyss-theme. | ||
\(fn)" t nil) | ||
|
||
;;;*** | ||
|
||
;;;### (autoloads nil nil ("abyss-theme-pkg.el") (23336 41190 0 0)) | ||
|
||
;;;*** | ||
|
||
;; Local Variables: | ||
;; version-control: never | ||
;; no-byte-compile: t | ||
;; no-update-autoloads: t | ||
;; End: | ||
;;; abyss-theme-autoloads.el ends here |
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,2 @@ | ||
;;; -*- no-byte-compile: t -*- | ||
(define-package "abyss-theme" "0.7" "A dark theme with contrasting colours." '((emacs "24")) :commit "18791c6e8d9cc2b4815c9f08627a2e94fc0eeb14" :keywords '("theme" "dark" "contrasting colours") :url "https://github.com/mgrbyte/emacs-abyss-theme") |
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,99 @@ | ||
;;; abyss-theme.el --- A dark theme with contrasting colours. | ||
|
||
;; Author: Matt Russell <matt@mgrbyte.co.uk> | ||
;; Version: 0.7 | ||
;; Package-Version: 0.7 | ||
;; Filename: abyss-theme.el | ||
;; Package-Requires: ((emacs "24")) | ||
;; Keywords: theme, dark, contrasting colours | ||
;; URL: https://github.com/mgrbyte/emacs-abyss-theme | ||
;; License: GPL-3+ | ||
|
||
;;; Commentary: | ||
|
||
;; A dark theme with contrasting colours for Emacs24 based on the | ||
;; ``Lush`` theme by Andre Richter, using the same colours palette | ||
;; as the the built-in `dichromacy' theme; intended to be suitable | ||
;; for red/green colour blind users. | ||
|
||
;;; Code: | ||
|
||
(deftheme abyss | ||
"Dark background and contrasting colours.") | ||
|
||
(let* ((abyss/orange "#e69f00") | ||
(abyss/skyblue "#56b4e9") | ||
(abyss/bluegreen "#009e73") | ||
(abyss/yellow "#f8ec59") | ||
(abyss/vanilla-cream "#fcfbe3") | ||
(abyss/blue "#0072b2") | ||
(abyss/vermillion "#d55e00") | ||
(abyss/redpurple "#cc79a7") | ||
(abyss/scarlet "#FF1A00") | ||
(abyss/bluegray "#848ea9") | ||
(abyss/background "#050000") | ||
(abyss/background2 "#0d1000") | ||
(abyss/foreground "#bbe0f0") | ||
(abyss/hl-line "#00f000") | ||
(abyss/magenta "#ff00ff") | ||
(abyss/hilite "#dd5542") | ||
(abyss/white "#ffffff") | ||
(abyss/green "#00ff00")) | ||
(custom-theme-set-faces | ||
`abyss | ||
`(bold ((t (:bold t)))) | ||
`(bold-italic ((t (:bold t)))) | ||
`(border-glyph ((t (nil)))) | ||
`(default | ||
((t (:foreground ,abyss/foreground :background ,abyss/background)))) | ||
`(fringe ((t (:background ,abyss/background2)))) | ||
`(buffers-tab | ||
((t (:foreground ,abyss/foreground :background ,abyss/background)))) | ||
`(font-lock-builtin-face ((t (:foreground ,abyss/vanilla-cream)))); | ||
`(font-lock-comment-delimiter-face ((t (:foreground ,abyss/vermillion :italic t)))) | ||
`(font-lock-comment-face ((t (:foreground ,abyss/vermillion :italic t)))) | ||
`(font-lock-constant-face ((t (:foreground ,abyss/redpurple)))) | ||
`(font-lock-doc-face ((t (:foreground ,abyss/orange)))) | ||
`(font-lock-doc-string-face ((t (:foreground ,abyss/vermillion)))) | ||
`(font-lock-string-face ((t (:foreground ,abyss/magenta)))) | ||
`(font-lock-function-name-face ((t (:foreground ,abyss/skyblue)))) | ||
`(font-lock-keyword-face ((t (:foreground ,abyss/yellow)))) | ||
`(font-lock-preprocessor-face ((t (:foreground ,abyss/blue)))) | ||
`(font-lock-type-face ((t (:foreground ,abyss/skyblue)))) | ||
`(font-lock-variable-name-face ((t (:foreground ,abyss/green )))) | ||
`(font-lock-negation-char-face ((t (:foreground ,abyss/redpurple)))) | ||
`(font-lock-warning-face ((t (:foreground ,abyss/scarlet :bold t)))) | ||
`(gui-element | ||
((t (:foreground ,abyss/background2 :background ,abyss/foreground)))) | ||
`(mode-line | ||
((t (:foreground ,abyss/background2 :background ,abyss/skyblue :box nil)))) | ||
`(mode-line-highlight | ||
((t (:foreground ,abyss/vanilla-cream :box nil)))) | ||
`(mode-line-inactive | ||
((t (:foreground ,abyss/redpurple :background ,abyss/background2 :box nil)))) | ||
`(text-cursor | ||
((t (:foreground ,abyss/foreground :background ,abyss/background)))) | ||
`(region | ||
((t (:foreground ,abyss/background :background ,abyss/redpurple)))) | ||
`(italic ((t (nil)))) | ||
`(left-margin ((t (nil)))) | ||
`(toolbar ((t (nil)))) | ||
`(whitespace-tab ((t (:background ,abyss/background)))) | ||
`(whitespace-line ((t (:foreground ,abyss/white :background ,abyss/hilite)))) | ||
`(magit-item-highlight ((t (:inherit region))))) | ||
`(underline ((nil (:underline nil))))) | ||
|
||
;;;###autoload | ||
(when load-file-name | ||
(add-to-list | ||
'custom-theme-load-path | ||
(file-name-as-directory (file-name-directory load-file-name)))) | ||
|
||
;;;###autoload | ||
(defun abyss-theme() | ||
"Load abyss-theme." | ||
(interactive) | ||
(load-theme 'abyss t)) | ||
|
||
(provide-theme 'abyss) | ||
;;; abyss-theme.el ends here |
Binary file not shown.
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,4 @@ | ||
A dark theme with contrasting colours for Emacs24 based on the | ||
``Lush`` theme by Andre Richter, using the same colours palette | ||
as the the built-in `dichromacy' theme; intended to be suitable | ||
for red/green colour blind users. |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Good signature from 474F05837FBDEF9B GNU ELPA Signing Agent <elpasign@elpa.gnu.org> | ||
(trust undefined) created at 2018-06-14T05:10:03+0800 using DSA | ||
(trust undefined) created at 2018-06-19T05:10:02+0800 using DSA |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
elpa/avy-20180612.212/avy-pkg.el → elpa/avy-20180615.801/avy-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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
;;; -*- no-byte-compile: t -*- | ||
(define-package "avy" "20180612.212" "Jump to arbitrary positions in visible text and select text quickly." '((emacs "24.1") (cl-lib "0.5")) :commit "7cfe11e3c15f22a7f8745608c82ab673374976ce" :keywords '("point" "location") :url "https://github.com/abo-abo/avy") | ||
(define-package "avy" "20180615.801" "Jump to arbitrary positions in visible text and select text quickly." '((emacs "24.1") (cl-lib "0.5")) :commit "7c40f5e3811716b05d87a06096b190f7cf7bdc45" :keywords '("point" "location") :url "https://github.com/abo-abo/avy") |
Oops, something went wrong.