
These settings gives me automatic wrapping of long lines and on the fly spell checking of the text I type.
;; Settings related to general text editing
(add-hook 'text-mode-hook
'(lambda ()
(auto-fill-mode 1)
(flyspell-mode 1)))
(setq longlines-show-hard-newlines t)