diff options
Diffstat (limited to 'config.org')
-rw-r--r-- | config.org | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config.org b/config.org index 39d62ba..7b5de4e 100644 --- a/config.org +++ b/config.org | |||
@@ -1,9 +1,13 @@ | |||
1 | #+TITLE:Emacs configuration, literate style | 1 | #+TITLE:Emacs configuration, literate style |
2 | #+AUTHOR:Case Duckworth | 2 | #+AUTHOR:Case Duckworth |
3 | #+PROPERTY: header-args :tangle init.el | 3 | #+PROPERTY: header-args :tangle init.el |
4 | #+EXPORT_FILE_NAME: README.md | ||
4 | #+OPTIONS: toc:nil | 5 | #+OPTIONS: toc:nil |
6 | #+OPTIONS: title:t | ||
5 | #+BANKRUPTCY_COUNT: 2 | 7 | #+BANKRUPTCY_COUNT: 2 |
6 | 8 | ||
9 | This is my Emacs configuration. It's also a literate =org-mode= file. Yeah, I'm a cool guy. | ||
10 | |||
7 | * About me | 11 | * About me |
8 | 12 | ||
9 | #+begin_src emacs-lisp | 13 | #+begin_src emacs-lisp |
@@ -731,6 +735,12 @@ I'm going to be honest -- most of this is a stab in the dark. | |||
731 | (org-pretty-entities t)) | 735 | (org-pretty-entities t)) |
732 | #+end_src | 736 | #+end_src |
733 | 737 | ||
738 | *** Enable markdown export | ||
739 | |||
740 | #+begin_src emacs-lisp | ||
741 | (require 'ox-md) | ||
742 | #+end_src | ||
743 | |||
734 | *** Ensure blank lines between headings and before contents | 744 | *** Ensure blank lines between headings and before contents |
735 | 745 | ||
736 | from [[https://github.com/alphapapa/unpackaged.el#ensure-blank-lines-between-headings-and-before-contents][unpackaged.el]] | 746 | from [[https://github.com/alphapapa/unpackaged.el#ensure-blank-lines-between-headings-and-before-contents][unpackaged.el]] |