diff options
author | Alan Pearce | 2016-06-08 11:09:01 +0200 |
---|---|---|
committer | Alan Pearce | 2016-06-08 11:09:01 +0200 |
commit | be5831f02f366fef49f0460be6723f9761f37a20 (patch) | |
tree | 0d1349d558676af6e215ee9b257295d7d3d01b78 /tag-emacs/emacs.d | |
parent | da937772fb32858f6a0b3d894178482a4a8bb65c (diff) | |
download | nixfiles-be5831f02f366fef49f0460be6723f9761f37a20.tar.lz nixfiles-be5831f02f366fef49f0460be6723f9761f37a20.tar.zst nixfiles-be5831f02f366fef49f0460be6723f9761f37a20.zip |
Emacs: Ensure typo-mode starts in English
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index f7cf9f60..cf479b31 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -2122,7 +2122,7 @@ type them. (use-package typo :config (progn (typo-global-mode 1) - (typo-change-language "English") + (setq-default typo-language "English") (add-hook 'text-mode-hook #'typo-mode) (defun typo-mode-turn-off () (typo-mode -1)) |