Emacs が起動するとすぐに、すべてのファイルとすべてのメジャーモードで flyspell-mode が自動的に使用されるようにするにはどうすればよいですか?
また、XML タグをスペルミスとしてマークしない XML 辞書はありますか?
The answer from this question worked for me:
How to enable automatic spell check by default?
Furthermore, it appears to be more general compared to the other prior answers. Add the following lines to your .emacs
or init.el
.
(add-hook 'text-mode-hook 'flyspell-mode)
(add-hook 'prog-mode-hook 'flyspell-prog-mode)