Start 'org' files with everything folded. Remove old, unused configs.

This commit is contained in:
2022-02-22 12:26:07 +00:00
parent 1025a64cac
commit b812b7669b

View File

@@ -11,6 +11,9 @@
(add-hook 'org-shiftdown-final-hook 'windmove-down)
(add-hook 'org-shiftright-final-hook 'windmove-right)
;; open org file with everything folded
(setq org-startup-folded t)
;; org publish
(require 'ox-publish)
(setq org-publish-project-alist
@@ -59,16 +62,11 @@
(scheme . t)
(shell . t)))
;;bullets in org-mode
;;(require 'org-bullets)
;;(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
;; default apps to open files with org-mode
(setq org-file-apps
(quote
((auto-mode . emacs)
("\\.mm\\'" . default)
("\\.x?html?\\'" . "seamonkey")
("\\.pdf\\'" . "emacsclient %s")
("\\.djvu\\'" . "djview %s"))))