From 8fd772cb90f4efe576f65aa9933a29d587f12a44 Mon Sep 17 00:00:00 2001
From: Vedang Manerikar <ved.manerikar@gmail.com>
Date: Thu, 28 Nov 2024 16:21:28 +0530
Subject: [PATCH] Move the provide forms to the correct locations

Manually, for the moment
---
 unravel-emacs.org                     | 12 ++++++++++++
 unravel-modules/unravel-essentials.el |  3 ++-
 unravel-modules/unravel-org.el        |  5 +++--
 3 files changed, 17 insertions(+), 3 deletions(-)

diff --git a/unravel-emacs.org b/unravel-emacs.org
index c65d415..de1adf8 100644
--- a/unravel-emacs.org
+++ b/unravel-emacs.org
@@ -4970,6 +4970,14 @@ To install ~zig~ and ~zls~ on MacOS:
 :END:
 I want this section to contain all the personal configuration that anyone using this repo should modify. But I don't know how to do this properly at the moment, so just noting things here until then.
 
+NOTE: All these settings are being added after the provide form, which is a big no-no. I don't know how to fix this at the moment.
+
+** My personal user settings
+:PROPERTIES:
+:CUSTOM_ID: h:9757A878-D383-47F4-94FD-98374954F83A
+:CREATED:  [2024-11-28 Thu 16:19]
+:END:
+
 #+begin_src emacs-lisp :tangle "unravel-modules/unravel-essentials.el"
   (use-package startup
     :ensure nil
@@ -4979,6 +4987,10 @@ I want this section to contain all the personal configuration that anyone using
 #+end_src
 
 ** My personal settings for ~org-capture~
+:PROPERTIES:
+:CUSTOM_ID: h:12636C22-D561-4726-8B37-10BD21737D54
+:CREATED:  [2024-11-28 Thu 16:20]
+:END:
 
 #+begin_src emacs-lisp :tangle "unravel-modules/unravel-org.el"
   ;;;; org-capture
diff --git a/unravel-modules/unravel-essentials.el b/unravel-modules/unravel-essentials.el
index 9550aed..dca8374 100644
--- a/unravel-modules/unravel-essentials.el
+++ b/unravel-modules/unravel-essentials.el
@@ -196,9 +196,10 @@ If the region is selected, retain the original behaviour, otherwise call
   :config
   (setq column-number-mode t))
 
-(provide 'unravel-essentials)
 
 (use-package startup
   :ensure nil
   :config
   (setq user-mail-address "vedang@unravel.tech"))
+
+(provide 'unravel-essentials)
diff --git a/unravel-modules/unravel-org.el b/unravel-modules/unravel-org.el
index b0c3e2a..e18669e 100644
--- a/unravel-modules/unravel-org.el
+++ b/unravel-modules/unravel-org.el
@@ -404,8 +404,6 @@
   ;;   (setq org-habit-show-all-today t)
   )
 
-(provide 'unravel-org)
-
 ;;;; org-capture
 (use-package org-capture
   :ensure nil
@@ -718,3 +716,6 @@
           :clock-resume t
           :immediate-finish t)
         org-capture-templates))
+
+(provide 'unravel-org)
+