mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
20 lines
410 B
EmacsLisp
20 lines
410 B
EmacsLisp
;;; siren-text-mode.el --- jimeh's Emacs Siren: text-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for text-mode.
|
|
|
|
;;; Code:
|
|
|
|
(use-package text-mode
|
|
:ensure nil ;; loaded from emacs built-ins
|
|
: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
|