From d0d284cecb7af1529870380a82d15afd9586d419 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 15 May 2019 17:49:31 +0100 Subject: [PATCH] Add ox-gfm package --- core/siren-modules.el | 1 + custom.el | 2 +- modules/org-mode/siren-ox-gfm.el | 22 ++++++++++++++++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 modules/org-mode/siren-ox-gfm.el diff --git a/core/siren-modules.el b/core/siren-modules.el index feec8ac..6b98040 100644 --- a/core/siren-modules.el +++ b/core/siren-modules.el @@ -119,6 +119,7 @@ (require 'siren-htmlize) (require 'siren-org-mode) (require 'siren-org-mouse) +(require 'siren-ox-gfm) (require 'siren-ox-jira) ;; Languages diff --git a/custom.el b/custom.el index 6303176..57489e8 100644 --- a/custom.el +++ b/custom.el @@ -6,7 +6,7 @@ '(ecb-options-version "2.50") '(package-selected-packages (quote - (zoom-window yasnippet-snippets yari yaml-mode which-key web-mode use-package typescript-mode toggle-quotes tide thrift string-inflection string-edit sqlformat smex smartparens smart-mode-line slim-mode seeing-is-believing scss-mode sass-mode rust-playground ruby-tools ruby-refactor ruby-compilation rubocopfmt rubocop rspec-mode robe rjsx-mode restart-emacs resize-window realgud-byebug rainbow-mode racer prettier-js plantuml-mode php-mode phi-search neotree nav multiple-cursors move-dup magit-gh-pulls lua-mode lsp-ui lsp-mode linum-relative json-mode imenu-anywhere ido-vertical-mode ido-completing-read+ hlinum highlight-symbol highlight-indentation highlight-indent-guides helpful helm-swoop helm-projectile helm-open-github helm-lsp helm-gtags helm-describe-modes helm-descbinds helm-ag groovy-mode go-projectile go-playground go-dlv gitignore-mode github-browse-file gitconfig-mode git-timemachine git-link full-ack flycheck-rust flycheck-gometalinter fill-column-indicator feature-mode expand-region exec-path-from-shell evil eslintd-fix editorconfig dumb-jump doom-themes dockerfile-mode direx diminish diff-hl dash-at-point company-lsp company-go coffee-mode cargo buffer-move browse-kill-ring anzu ace-window)))) + (zoom-window yasnippet-snippets yari yaml-mode which-key web-mode use-package typescript-mode toggle-quotes tide thrift string-inflection string-edit sqlformat smex smartparens smart-mode-line slim-mode seeing-is-believing scss-mode sass-mode rust-playground ruby-tools ruby-refactor ruby-compilation rubocopfmt rubocop rspec-mode robe rjsx-mode restart-emacs resize-window realgud-byebug rainbow-mode racer prettier-js plantuml-mode php-mode phi-search ox-jira ox-gfm neotree nav multiple-cursors move-dup magit-gh-pulls lua-mode lsp-ui lsp-mode linum-relative json-mode imenu-anywhere ido-vertical-mode ido-completing-read+ htmlize hlinum highlight-symbol highlight-indentation highlight-indent-guides helpful helm-swoop helm-projectile helm-open-github helm-lsp helm-gtags helm-describe-modes helm-descbinds helm-ag groovy-mode go-projectile go-playground go-dlv gitignore-mode github-browse-file gitconfig-mode git-timemachine git-link full-ack flycheck-rust flycheck-gometalinter fill-column-indicator feature-mode expand-region exec-path-from-shell evil eslintd-fix editorconfig dumb-jump doom-themes dockerfile-mode direx diminish diff-hl dash-at-point company-lsp company-go coffee-mode cargo buffer-move browse-kill-ring anzu ace-window)))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/modules/org-mode/siren-ox-gfm.el b/modules/org-mode/siren-ox-gfm.el new file mode 100644 index 0000000..7d77139 --- /dev/null +++ b/modules/org-mode/siren-ox-gfm.el @@ -0,0 +1,22 @@ +;;; siren-ox-gfm.el --- jimeh's Emacs Siren: ox-gfm configuration. + +;;; Commentary: + +;; Basic configuration for ox-gfm. + +;;; Code: + +(require 'siren-org-mode) + +(use-package ox-gfm + :defer t + + :hook + (org-mode . siren-ox-gfm-setup) + + :init + (defun siren-ox-gfm-setup () + (require 'ox-gfm))) + +(provide 'siren-ox-gfm) +;;; siren-ox-gfm.el ends here