summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d
diff options
context:
space:
mode:
authorAlan Pearce2016-02-05 20:08:23 +0100
committerAlan Pearce2016-02-05 20:08:23 +0100
commit6ed795a7d9302fd37a0099fa14d0690c513cef75 (patch)
treead4ab45258de7ffc8ea2e982f96949e7dc5c1312 /tag-emacs/emacs.d
parent5357fa8e66c973a6958ae14bd4bfa30d6fd4c9b1 (diff)
downloaddotfiles-6ed795a7d9302fd37a0099fa14d0690c513cef75.tar.lz
dotfiles-6ed795a7d9302fd37a0099fa14d0690c513cef75.tar.zst
dotfiles-6ed795a7d9302fd37a0099fa14d0690c513cef75.zip
Emacs: Set typo-mode language to English
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r--tag-emacs/emacs.d/init.org3
1 files changed, 2 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index a1417bb..09ffb12 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -2303,7 +2303,8 @@ type them.
 #+BEGIN_SRC emacs-lisp
   (use-package typo
     :config (progn
-              (typo-global-mode 1))
+              (typo-global-mode 1)
+              (typo-change-language "English"))
     :init (progn
             (add-hook 'text-mode-hook #'typo-mode)
             (defun typo-mode-turn-off ()