Table of Contents

1. General Documentation Configuration

Common documentation tools and utilities that apply across all document formats (Org-mode, Markdown, etc.).

1.1. Overview

This module provides:

  • Distraction-Free Writing: Olivetti for centered, focused writing
  • Reading Experience: Enhanced typography and visual comfort

1.2. What's Included

Category Tools
Distraction-Free Mode olivetti

1.3. General

;;; doc-general-conf.el --- General documentation configuration -*- lexical-binding: t; -*-
;;; Commentary:
;;; General documentation tools: distraction-free writing and utilities
;;; that apply across all document formats.
;;; Code:

;; Distraction-Free Writing
(use-package olivetti
  :bind ("<f9>" . olivetti-mode) ;; Toggle with F9
  :custom
  (olivetti-body-width 80)       ;; Set width to 80 chars
  (olivetti-recall-visual-line-mode-entry-state t))

2. End of File

(provide 'doc-general-conf)
;;; doc-general-conf.el ends here