summary refs log tree commit diff
path: root/emacs.d/inits/50_flyspell.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/inits/50_flyspell.el')
-rw-r--r--emacs.d/inits/50_flyspell.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs.d/inits/50_flyspell.el b/emacs.d/inits/50_flyspell.el
new file mode 100644
index 0000000..fe0c754
--- /dev/null
+++ b/emacs.d/inits/50_flyspell.el
@@ -0,0 +1,9 @@
+;; (use-package flyspell
+;;   :ensure t
+;;   :defer t
+;;   :init
+;;   (progn
+;;     (setq ispell-program-name "aspell"
+;;           ispell-list-command "--list")
+;;     (add-hook 'prog-mode-hook 'flyspell-prog-mode)
+;;     (add-hook 'text-mode-hook 'turn-on-flyspell)))