mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
24 lines
526 B
EmacsLisp
24 lines
526 B
EmacsLisp
;;; siren-writeroom.el --- jimeh's Emacs Siren: writeroom-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for writeroom-mode.
|
|
|
|
;;; Code:
|
|
|
|
(use-package writeroom-mode
|
|
:defer t
|
|
:bind
|
|
(:map writeroom-mode-map
|
|
("C-M-<" . writeroom-decrease-width)
|
|
("C-M->" . writeroom-increase-width)
|
|
("C-M-=" . writeroom-adjust-width))
|
|
|
|
:custom
|
|
(writeroom-global-effects nil)
|
|
(writeroom-restore-window-config t)
|
|
(writeroom-width 88))
|
|
|
|
(provide 'siren-writeroom)
|
|
;;; siren-writeroom.el ends here
|