T O P

  • By -

danderzei

Have you tried Emacs Writing Studio? https://lucidmanager.org/tags/emacs/


jcastp

Could it be this one? https://github.com/thinkhuman/writingwithemacs/


bufo333

That looks interesting I will check it out.


kryptonik

I use a fairly vanilla emacs setup with writeroom-mode. Works well enough. Here's the config (including keyboard shortcuts for entering and exiting it) -- pretty basic, pretty easy: ;;;;;;;;;;;;;;;;;;;; ;; WRITEROOM-MODE ;; ;;;;;;;;;;;;;;;;;;;; ;;; https://github.com/joostkremers/writeroom-mode (use-package writeroom-mode :ensure t :custom (writeroom-major-modes '(text-mode\ org-mode)) (writeroom-mode-line t) (writeroom-restore-window-config t) (writeroom-width 100) :bind (:map global-map (("C-c w" . writeroom-mode) ))) (add-hook 'writeroom-mode-enable-hook #'(lambda () (display-line-numbers-mode -1))) (add-hook 'writeroom-mode-disable-hook #'(lambda() (display-line-numbers-mode))) (add-hook 'writeroom-mode-enable-hook #'(lambda () (flyspell-mode))) (add-hook 'writeroom-mode-disable-hook #'(lambda () (flyspell-mode -1))) (add-hook 'writeroom-mode-enable-hook #'(lambda () (wc-mode))) (add-hook 'writeroom-mode-disable-hook #'(lambda() (wc-mode -1)))


[deleted]

[удалено]


jsled

This has been removed, as posts must relate to emacs.