emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Turn on org-num-mode in init?


From: Lawrence Bottorff
Subject: Re: Turn on org-num-mode in init?
Date: Tue, 10 Mar 2020 11:53:51 -0500

Good. That worked. I just put

(require 'org-num)
(add-hook 'org-mode-hook #'org-num-mode)

inside my use-package org 's (massive) :config


On Tue, Mar 10, 2020 at 1:28 AM Eric S Fraga <address@hidden> wrote:
On Monday,  9 Mar 2020 at 23:31, Lawrence Bottorff wrote:
> I've tried a few variations of trying to turn on org-num-mode (which now
> comes standard in org, correct?) in my init, but I keep getting an error
> buffer upon a fresh startup

Maybe show us what you have right now instead of what others have done?

In any case, this one:

> (use-package org-num
>   :load-path "lisp/"
>   :after org
>   :hook (org-mode . org-num-mode))

should work, as far as I can tell although I don't use use-package at
all.  Have you tried with a reduced .emacs?

You could try the following:

(require 'org)
(require 'org-num)
(add-hook 'org-mode-hook #'org-num-mode)

--
: Eric S Fraga via Emacs 28.0.50, Org release_9.3.6-354-g9d5880

reply via email to

[Prev in Thread] Current Thread [Next in Thread]