summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-text.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/custom/fcuny-text.el')
-rw-r--r--emacs.d/custom/fcuny-text.el31
1 files changed, 0 insertions, 31 deletions
diff --git a/emacs.d/custom/fcuny-text.el b/emacs.d/custom/fcuny-text.el
deleted file mode 100644
index 45198a1..0000000
--- a/emacs.d/custom/fcuny-text.el
+++ /dev/null
@@ -1,31 +0,0 @@
-(use-package flyspell
-  :ensure t
-  :if (executable-find "aspell")
-  :hook ((text-mode . flyspell-mode)
-         (prog-mode . flyspell-prog-mode))
-  :custom
-  (ispell-dictionary "en_US")
-  (ispell-program-name "aspell")
-  :config
-  (use-package flyspell-correct-ivy
-    :after flyspell
-    :ensure t
-    :bind (:map flyspell-mode-map
-                ("C-M-:" . flyspell-correct-at-point))
-    :custom
-    (flyspell-correct-interface #'flyspell-correct-ivy)))
-
-(use-package markdown-mode
-  :ensure t
-  :after (flyspell)
-  :commands (markdown-mode gfm-mode)
-  :mode (("README\\.md\\'" . gfm-mode)
-         ("\\.md\\'"       . gfm-mode)
-         ("\\.markdown\\'" . gfm-mode))
-  :custom
-  (markdown-fontify-code-blocks-natively t)
-  :config
-  (when (executable-find "pandoc")
-    (setq markdown-command "pandoc -f markdown -t html")))
-
-(provide 'fcuny-text)