conf-text.el 378 B

1234567891011121314151617
  1. ;;; Code:
  2. ;; act (more) like a word processor
  3. (add-to-list 'auto-mode-alist '("\\.ll\\'" . text-mode))
  4. (add-to-list 'auto-mode-alist '("\\.txt\\'" . text-mode))
  5. ;; Functions
  6. (defun distopico:text-mode-hook ()
  7. "Hook when `text-mode' is enable."
  8. (auto-fill-mode +1)
  9. (flyspell-mode +1))
  10. ;; Hooks
  11. (add-hook 'text-mode-hook #'distopico:text-mode-hook)
  12. (provide 'conf-text)