Skip to content

Commit

Permalink
Add configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jwiegley committed Jan 8, 2017
1 parent 570b0d0 commit 92c5e7c
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions init.el
Expand Up @@ -3209,7 +3209,13 @@ Inspired by Erik Naggum's `recursive-edit-with-single-window'."
:load-path "site-lisp/markdown-mode"
:mode (("\\`README\\.md\\'" . gfm-mode)
("\\.md\\'" . markdown-mode)
("\\.markdown\\'" . markdown-mode)))
("\\.markdown\\'" . markdown-mode))
:config
(use-package markdown-preview-mode
:load-path "site-lisp/markdown-preview-mode"
:config
(setq markdown-preview-stylesheets
(list "http://ftp.newartisans.com/pub/github.css"))))

(use-package mediawiki
;; (shell-command "rm -fr site-lisp/mediawiki")
Expand Down Expand Up @@ -3681,6 +3687,19 @@ Inspired by Erik Naggum's `recursive-edit-with-single-window'."
:load-path "site-lisp/restclient"
:mode ("\\.rest\\'" . restclient-mode))

(use-package rings-xhtml
:load-path "~/bae/xhtml-deliverable/scripts"
:bind ("<f10>" . rings-xhtml-run-all)
:commands (rings-xhtml-run-test-for-demo
rings-xhtml-run
rings-xhtml-run-all)
:init
(use-package rings
:load-path "~/bae/xhtml-deliverable/rings-dashboard"
:commands (rings-setup
rings-app-run
rings-cleanup-docker)))

(use-package ruby-mode
:load-path "site-lisp/ruby-mode"
:mode ("\\.rb\\'" . ruby-mode)
Expand Down Expand Up @@ -3952,7 +3971,7 @@ Inspired by Erik Naggum's `recursive-edit-with-single-window'."

(use-package smedl-mode
:load-path "~/bae/smedl/emacs/"
:mode ("\\.smedl\\'" . smedl-mode))
:mode ("\\.\\(a4\\)?smedl\\'" . smedl-mode))

(use-package smerge-mode
:commands smerge-mode
Expand Down

0 comments on commit 92c5e7c

Please sign in to comment.