From e0cfd49b21320956fa156537c2c1eadf1b2db366 Mon Sep 17 00:00:00 2001 From: Marcel Fries Date: Wed, 14 Aug 2019 07:54:09 +0200 Subject: [PATCH] Set default location for org-mode archiving. --- setup-emacs.org | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup-emacs.org b/setup-emacs.org index 36853cc..5392b2d 100644 --- a/setup-emacs.org +++ b/setup-emacs.org @@ -332,6 +332,14 @@ This is my configuration for the emacs editor. (org-emphasize ?~))) #+END_SRC +** Set default archive location + When archiving items in org files, the default ist to crate a separate file named ~.org_archive~. + This clutters up my notes folder quite a bit, as I use a lot of separate files with thier respective archives. + All archives should be stored in a single ~.archive~ file per directory. + #+BEGIN_SRC emacs-lisp + (setq org-archive-location "./.archive::* From %s") + #+END_SRC + ** Beautify org-mode *** Icons for headline indentation #+BEGIN_SRC emacs-lisp