summaryrefslogtreecommitdiff
path: root/lisp/text.el
blob: 4e1f8bf447595f02384384b61b192c0821bc705d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;; Text file section
(defun setup-text-mode ()
  (setq word-wrap t)
  (global-hl-line-mode 0)
  )

;;(require 'flyspell)
;;(autoload 'flyspell-mode "flyspell" "On-the-fly spelling checker." t)
;;(add-hook 'text-mode flyspell-mode)


(provide 'text)