What's the easiest way to get org-more (and Emacs?) working under Windows? Is there a same/similar setup which is more lightweight that can run org-mode? Any Notepad++ plug-ins?

I don't need a heavy setup for the Windows laptop that I use for business-y things and bringing to meetings.

(Back in the day I used to use Emacs and Gnus for mail and netnews, but I haven't done that in a long while.)

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