From a35ce02cdfac5af8b3064884762b32fc92589497 Mon Sep 17 00:00:00 2001 From: Marco Thomas <39596050+marcothms@users.noreply.github.com> Date: Wed, 5 Jan 2022 10:19:34 +0100 Subject: [PATCH] Fix tangle in initial tangle --- files/init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/init.el b/files/init.el index 040b45e..965e103 100644 --- a/files/init.el +++ b/files/init.el @@ -1,4 +1,4 @@ (require 'org) -(find-file (concat user-emacs-directory "init.org")) +(find-file (concat (getenv "HOME") "dots/files/init.org")) (org-babel-tangle) -(load-file (concat user-emacs-directory "init.el")) +(load-file (concat (getenv "HOME") "dots/files/init.el"))