diff options
-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 |