summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2020-11-25 22:11:18 -0600
committerCase Duckworth2020-11-25 22:11:18 -0600
commitc230bb4cfe372509c34e1cba7e1ea2a2ee09b098 (patch)
treece15b5cf920514f5407c4be8ced51cae57ba0c40 /config.org
parentAdd bongo (diff)
downloademacs-c230bb4cfe372509c34e1cba7e1ea2a2ee09b098.tar.gz
emacs-c230bb4cfe372509c34e1cba7e1ea2a2ee09b098.zip
Change README
Diffstat (limited to 'config.org')
-rw-r--r--config.org10
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
9This 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
736from [[https://github.com/alphapapa/unpackaged.el#ensure-blank-lines-between-headings-and-before-contents][unpackaged.el]] 746from [[https://github.com/alphapapa/unpackaged.el#ensure-blank-lines-between-headings-and-before-contents][unpackaged.el]]