mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Split large modules into smaller parts (e.g. siren-text-manipulation) - Organize modules into high level groups: - completion - core - editor - languages - linting - misc - navigation - projects - spelling - text-editing - version-control - windows - workspaces
18 lines
384 B
EmacsLisp
18 lines
384 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)))
|
|
|
|
(provide 'siren-text-mode)
|
|
;;; siren-text-mode.el ends here
|