Closed nobiot closed 3 years ago
Just to make it more clear to noobs like me. Love the work man. Thanks a lot.
Doom Emacs
users.In your ~/.doom.d/package.el
add the following
(package! org-transclusion
:recipe (:host github
:repo "nobiot/org-transclusion"
:branch "main"
:files ("*.el")))
And in your ~/.doom.d/config.el
file add
(use-package! org-transclusion)
Notice
In your package.el
file the statement starts with package!
while in the config.el
it starts with use-package!
.
In your config.el
file
(use-package! org-transclusion)
has to be placed inside the (after! org)
section like this:
(after! org
your org config...
(use-package! org-transclusion)
)
Don’t have source but I remember reading it in the Doom Emacs’s manual.
Details here:
Examples:
~/.doom.d/config.org
and ~/.doom.d/packages.org
files and search for transclusion. You can find them in my dotfiles.Tried: [2021-06-02 Wed]
Happy hacking :)
Edit: references, emphasis, spell.
@Ma-Nu-El Thank you! I don't use Doom, so this is great.
@Ma-Nu-El , just let you know that I have updated README and inlucded some Doom information based on your input (a little different than yours). Thank you.
With the change of README and merging of v0.2.0, I think I can close this notice.
Happy to help man!
Cheers!
On Sat, 12 Jun 2021 at 08:22 Noboru Ota @.***> wrote:
Closed #79 https://github.com/nobiot/org-transclusion/issues/79.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/nobiot/org-transclusion/issues/79#event-4881213461, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMK6PCHVU7FMCE3K3P6M2KTTSNGRFANCNFSM45LO7VBA .
-- Manuel Fuica Morales Estudiante *de *Ingeniería Civil Industrial mención Informática Universidad de la Frontera - Chile
--
La información contenida en este correo electrónico y cualquier anexo o respuesta relacionada puede contener datos e información confidencial y no puede ser usada o difundida por personas distintas a su(s) destinatario(s). Si usted no es el destinatario de esta comunicación, le informamos que cualquier divulgación, distribución o copia de esta información constituye un delito conforme a la ley chilena. Si lo ha recibido por error, por favor borre el mensaje y todos sus anexos y notifique al remitente.
Las opiniones vertidas en este correo, no contenidas en un documento oficial de la Universidad, son responsabilidad de quien las emite o de quien solicitó su envío, en el ejercicio de su libertad de opinión y de expresión que, como miembro de la comunidad universitaria se le reconoce, y no representan, necesariamente, el pensamiento de la Universidad de La Frontera y de sus directivos.
Following from a conversation on Reddit, I am soon introducing a new file that is dedicated to "live-sync".
I have seen some Doom users selectively install only
org-transclusion.el
file. (Thank you for the snippet, @wuqui) Please watch out for the upcoming change and adjust your script accordingly. You will need another file to be namedtext-clone.el
.If you would like to avoid downloading README, you might like to try something like this (refer to Doom's documentation):
I will appreciate it if you notice any error in this script -- it will be a great input for README documentation. Thank you.
The change has been merged with main.