From 945f8f8cdd1b78f429a2eeee47b30b3b3648dbbb Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 20 Nov 2022 19:14:46 +0000 Subject: Add customisations by emacs --- custom.el | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 custom.el diff --git a/custom.el b/custom.el new file mode 100644 index 0000000..2ab2efb --- /dev/null +++ b/custom.el @@ -0,0 +1,25 @@ +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(org-agenda-files + '("/home/ymherklotz/Dropbox/org/inbox.org" "/home/ymherklotz/Dropbox/org/main.org" "/home/ymherklotz/Dropbox/org/tickler.org" "/home/ymherklotz/Dropbox/org/projects.org" "/home/ymherklotz/Dropbox/bibliography/reading_list.org")) + '(safe-local-variable-values + '((eval setq org-ref-pdf-directory + (concat + (projectile-project-root) + "papers/")) + (eval setq org-attach-id-dir + (concat + (locate-dominating-file + (buffer-file-name) + ".dir-locals.el") + "data")) + (eval add-hook 'before-save-hook #'org-zettelkasten-update-modified nil t)))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) -- cgit