|
|
|
|
|
by jrhawley
1723 days ago
|
|
On Windows, probably the easiest way is to use Scoop [0].
You can then install org-mode with `M-x package-install org-plus-contrib` If you want to set it up in your `~/.emacs.d/init.el` config, you can use something like `use-package` [1] to make the installation easier : ```elisp
(add-to-list 'package-archives '("Org" . "https://orgmode.org/elpa/"))
(use-package org
:ensure org-plus-contrib
:mode ("\\.org\\'" . org-mode)
)
``` [0]: https://jrhawley.ca/2020/03/08/emacs
[1]: https://github.com/jwiegley/use-package |
|