;;; my-text.el --- configures modes related to text -*- lexical-binding: t -*- ;;; Commentary: ;;; Code: (customize-set-variable 'ispell-program-name (executable-find "aspell")) (customize-set-variable 'ispell-dictionary "en_US") (customize-set-variable 'ispell-extra-args '("--camel-case")) (add-hook 'text-mode-hook 'flyspell-mode) (add-hook 'prog-mode-hook 'flyspell-prog-mode) (customize-set-variable 'markdown-fontify-code-block-natively t) (when (executable-find "pandoc") (customize-set-variable 'markdown-command "pandoc -f markdown -t html")) (require 'dabbrev) (require 'abbrev) (let ((map global-map)) (define-key map (kbd "M-/") #'dabbrev-expand) (define-key map (kbd "C-x M-/") #'dabbrev-completion)) (setq only-global-abbrevs nil) (let ((table text-mode-abbrev-table)) (define-abbrev table "github" "GitHub") (define-abbrev table "emacs" "Emacs")) (dolist (hook '(text-mode-hook git-commit-mode-hook)) (add-hook hook #'abbrev-mode)) (provide 'my-text) ;;; my-text.el ends here