Added some more changes to how emacs exports org docs

This commit is contained in:
Random936 2023-09-09 09:24:41 -07:00
parent e6e4e9a5d5
commit a9e34d2278
2 changed files with 18 additions and 12 deletions

3
.emacs
View File

@ -1,3 +1,6 @@
; Enable following symlinks
(setq vc-follow-symlinks t)
; Load the main config file for emacs ; Load the main config file for emacs
(require 'org) (require 'org)
(org-babel-load-file (org-babel-load-file

View File

@ -518,14 +518,17 @@ This installs the org package and creates a setup function to enable/disable cer
(org-indent-mode) (org-indent-mode)
(variable-pitch-mode 1) (variable-pitch-mode 1)
(visual-line-mode 1) (visual-line-mode 1)
(add-to-list 'org-link-frame-setup '(file . find-file)) ; Open link in current window not other window. (add-to-list 'org-link-frame-setup '(file . find-file))) ; Open link in current window not other window.
(setq org-hide-emphasis-markers t))
(use-package org (use-package org
:hook (org-mode . jm/org-mode-setup) :hook (org-mode . jm/org-mode-setup)
:config :config
(setq org-ellipsis " ▾")) (setq org-ellipsis " ▾")
(setq org-hide-emphasis-markers t)
(setq org-src-preserve-indentation t)
(setq org-export-with-toc nil)
(setq org-export-with-section-numbers nil)
(setq org-export-with-sub-superscripts nil))
#+end_src #+end_src
** Cosmetics ** Cosmetics