diff options
author | Case Duckworth | 2020-12-11 18:24:42 -0600 |
---|---|---|
committer | Case Duckworth | 2020-12-11 18:24:42 -0600 |
commit | e3b30283c07079ced29029a45419afc9f3dced28 (patch) | |
tree | 2528c0be25ad81e748ba4163ab9dd534accb8cdf | |
parent | Add kaomoji (diff) | |
download | emacs-e3b30283c07079ced29029a45419afc9f3dced28.tar.gz emacs-e3b30283c07079ced29029a45419afc9f3dced28.zip |
Configure org
-rw-r--r-- | config.org | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/config.org b/config.org index cc6879e..6c08e4f 100644 --- a/config.org +++ b/config.org | |||
@@ -866,6 +866,12 @@ I’ve put org mode under Applications, as opposed to Writing, because it’s m | |||
866 | 866 | ||
867 | #+begin_src emacs-lisp | 867 | #+begin_src emacs-lisp |
868 | (use-package org | 868 | (use-package org |
869 | :mode ("\\.org\\'" . org-mode) | ||
870 | |||
871 | :bind (:map org-mode-map | ||
872 | ("M-n" . outline-next-visible-heading) | ||
873 | ("M-p" . outline-previous-visible-heading)) | ||
874 | |||
869 | :custom | 875 | :custom |
870 | (org-hide-emphasis-markers t) | 876 | (org-hide-emphasis-markers t) |
871 | (org-fontify-done-headline t) | 877 | (org-fontify-done-headline t) |
@@ -877,13 +883,11 @@ I’ve put org mode under Applications, as opposed to Writing, because it’s m | |||
877 | (org-src-tab-acts-natively t) | 883 | (org-src-tab-acts-natively t) |
878 | (org-src-fontify-natively t) | 884 | (org-src-fontify-natively t) |
879 | (org-src-window-setup 'current-window) | 885 | (org-src-window-setup 'current-window) |
880 | (org-confirm-babel-evaluate nil)) | 886 | (org-confirm-babel-evaluate nil) |
881 | #+end_src | ||
882 | 887 | ||
883 | *** Export to markdown | 888 | :config |
884 | 889 | (require 'org-tempo) | |
885 | #+begin_src emacs-lisp | 890 | (require 'ox-md)) |
886 | (require 'ox-md) | ||
887 | #+end_src | 891 | #+end_src |
888 | 892 | ||
889 | *** Make bullets look like bullets | 893 | *** Make bullets look like bullets |