Skip to content

Commit

Permalink
tidy up colour-pack structure and also modify markdown highlighting f…
Browse files Browse the repository at this point in the history
…or cyberpunk
  • Loading branch information
samaaron committed Nov 19, 2012
1 parent e9ee0e4 commit 449465a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
9 changes: 9 additions & 0 deletions packs/dev/colour-pack/config/colour-theme-conf.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
(live-add-pack-lib "color-theme")
(require 'color-theme)

;; use blackbored colour theme
(load-file (concat (live-pack-lib-dir) "cyberpunk.el"))
(load-file (concat (live-pack-lib-dir) "gandalf.el"))

(color-theme-cyberpunk)
(set-cursor-color "yellow")
13 changes: 3 additions & 10 deletions packs/dev/colour-pack/init.el
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
(live-add-pack-lib "color-theme")
(require 'color-theme)

(global-hl-line-mode 1)

;; use blackbored colour theme
(load-file (concat (live-pack-lib-dir) "cyberpunk.el"))
(load-file (concat (live-pack-lib-dir) "gandalf.el"))

(color-theme-cyberpunk)

(set-cursor-color "yellow")
(live-load-config-file "colour-theme-conf.el")
(live-load-config-file "live-fontify-hex-conf.el")
(live-load-config-file "live-fontify-hex-conf.el")
8 changes: 8 additions & 0 deletions packs/dev/colour-pack/lib/cyberpunk.el
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,14 @@
(hl-sexp-face ((t (:background "grey9"))))

(browse-kill-ring-current-entry-face ((t (:background "#333333"))))

(markdown-link-face ((t (:foreground "#FBDE2D"))))
(markdown-url-face ((t (:foreground "#61CE3C"))))
(markdown-bold-face ((t (:foreground "#FF6400"))))
(markdown-italic-face ((t (:italic t :foreground "#FF6400"))))
(markdown-pre-face ((t (:foreground "#4c83ff"))))
(markdown-inline-code-face ((t (:foreground "#4c83ff"))))
(markdown-list-face ((t (:foreground "#8B8989"))))
))
)

Expand Down

0 comments on commit 449465a

Please sign in to comment.