From b07c6ea7ed331d0a332f35ad0038274b47742310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Mon, 8 Sep 2025 11:37:37 -0600 Subject: [PATCH] feat(emacs): org-noter --- modules/home/users/msyds/emacs/init.el | 1 + modules/home/users/msyds/emacs/lisp/syd/org/noter.el | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 modules/home/users/msyds/emacs/lisp/syd/org/noter.el diff --git a/modules/home/users/msyds/emacs/init.el b/modules/home/users/msyds/emacs/init.el index 2be3aef..83551fc 100644 --- a/modules/home/users/msyds/emacs/init.el +++ b/modules/home/users/msyds/emacs/init.el @@ -38,6 +38,7 @@ syd/org/latex syd/org/transclusion syd/org/superstar + syd/org/noter syd/smartparens syd/snippets syd/ptemplate)) diff --git a/modules/home/users/msyds/emacs/lisp/syd/org/noter.el b/modules/home/users/msyds/emacs/lisp/syd/org/noter.el new file mode 100644 index 0000000..51a860b --- /dev/null +++ b/modules/home/users/msyds/emacs/lisp/syd/org/noter.el @@ -0,0 +1,9 @@ +;;; -*- lexical-binding: t; -*- + +(require 'syd/base) +(require 'syd/org) + +(use-package org-noter + :commands org-noter) + +(provide 'syd/org/noter)