38 lines
942 B
Org Mode
38 lines
942 B
Org Mode
#+Title: Writing Config
|
|
#+author: Evie Litherland-Smith
|
|
#+email: evie@xenia.me.uk
|
|
#+filetags: :emacs:config:org:
|
|
#+property: header-args:emacs-lisp :tangle yes :mkdirp yes :results output silent
|
|
* Doc-view
|
|
#+begin_src emacs-lisp :tangle yes
|
|
(use-package doc-view
|
|
:defer t
|
|
:ensure t
|
|
:bind ( :map doc-view-mode-map
|
|
("<mouse-8>" . doc-view-previous-page)
|
|
("<mouse-9>" . doc-view-next-page))
|
|
:custom
|
|
(doc-view-resolution 200)
|
|
(doc-view-imenu-enabled t)
|
|
(doc-view-scale-internally t)
|
|
(doc-view-image-width 850))
|
|
#+end_src
|
|
* TODO LaTeX
|
|
* Markdown
|
|
#+begin_src emacs-lisp
|
|
(use-package markdown-mode
|
|
:ensure t
|
|
:diminish
|
|
:custom
|
|
(markdown-enable-math t)
|
|
(markdown-enable-html t))
|
|
#+end_src
|
|
* Pandoc
|
|
#+begin_src emacs-lisp
|
|
(use-package pandoc-mode
|
|
:ensure t
|
|
:diminish
|
|
:after (markdown-mode)
|
|
:hook (markdown-mode . conditionally-turn-on-pandoc))
|
|
#+end_src
|