diff options
-rw-r--r-- | init-el.org | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/init-el.org b/init-el.org index c74a360..eda6938 100644 --- a/init-el.org +++ b/init-el.org @@ -94,6 +94,7 @@ So, to use this file for the very first time you must '("elpa" . "https://elpa.gnu.org/packages/") t) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) + (package-initialize) (package-refresh-contents) @@ -238,7 +239,7 @@ So, to use this file for the very first time you must #+name: org-mode-main-config #+begin_src elisp :noweb no-export :results none -(my-package-install 'org "elpa") +(package-install 'org) (require 'org) (setq org-duration-format 'h:mm) @@ -250,6 +251,8 @@ So, to use this file for the very first time you must (setq org-imenu-depth 10) +(setq org-startup-folded t) + (defun my-org-up-heading () (interactive) (org-up-heading-safe)) |