From f1bd00b3299bdf1b11b1c156445bf10a3ee89367 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 6 Feb 2025 20:04:22 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20(scribbles)=20Use=20API=20integrati?= =?UTF-8?q?on=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.org | 9 +++++++++ packages/scribbles.el | 1 + 2 files changed, 10 insertions(+) diff --git a/config.org b/config.org index bdfbc05..2992a4a 100644 --- a/config.org +++ b/config.org @@ -2794,6 +2794,15 @@ Since version 27 Emacs features a tab bar. In contrast to e.g. a browser a tab d :bind ("C-c f" . mmk2410/tab-bar/body)) #+end_src +** Scribbles API Integration + +API Integration for my [[https://mmk2410.org/scribbles][Scribbles microblog]]. + +#+begin_src emacs-lisp +(use-package scribbles + :load-path "packages/") +#+end_src + * Work For my workplace I have some additional packages and configuration that I keep in an own file. diff --git a/packages/scribbles.el b/packages/scribbles.el index 3d6087d..1aa840e 100644 --- a/packages/scribbles.el +++ b/packages/scribbles.el @@ -26,4 +26,5 @@ :headers (scribbles--build-headers) :body (json-encode `(("text" . ,message))))) +(provide 'scribbles) ;;; scribbles.el ends here