Files
.emacs.d/modules/languages/siren-text-mode.el
Jim Myhrberg efecb5172c chore(startup): Make various modules more lazy-loaded
This should improve startup speed a little bit.
2020-03-15 02:44:46 +00:00

21 lines
405 B
EmacsLisp

;;; siren-text-mode.el --- jimeh's Emacs Siren: text-mode configuration.
;;; Commentary:
;; Basic configuration for text-mode.
;;; Code:
(use-package text-mode
:straight (:type built-in)
:defer t
:hook (text-mode . siren-text-mode-setup)
:init
(defun siren-text-mode-setup ()
(setq fill-column 80)
(visual-line-mode t)))
(provide 'siren-text-mode)
;;; siren-text-mode.el ends here