diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-11-18 20:33:30 +0000 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-11-18 20:33:30 +0000 |
commit | 30f9220eaf3cdc290530ce9ff701b70f706ba310 (patch) | |
tree | ff1f3b387b62329cc7cd59f731f3ae4df64dd240 | |
parent | f3f4edd75040e8633048c6696c2e9343774d1346 (diff) | |
download | dotfiles-30f9220eaf3cdc290530ce9ff701b70f706ba310.tar.gz |
Set default-input-method back to nil
-rw-r--r-- | .emacs.d/lisp/init-editor.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-editor.el b/.emacs.d/lisp/init-editor.el index ce7951c..1143b59 100644 --- a/.emacs.d/lisp/init-editor.el +++ b/.emacs.d/lisp/init-editor.el @@ -63,8 +63,8 @@ (setq sentence-end-double-space nil) (set-language-environment "UTF-8") - ;; TODO is this needed? (See https://github.com/jamescherti/minimal-emacs.d) - ;; (setq default-input-method nil) + ;; The previous line sets this to "rfc1345" + (setq default-input-method nil) (set-default 'imenu-auto-rescan t)) |