fix: unset default-input-method in early-init.el

set-language-environment sets default-input-method, which is unwanted.

Fix: #5046
This commit is contained in:
Itai Y. Efrat 2021-10-30 18:16:39 +03:00 committed by Henrik Lissner
parent 05edc70827
commit 98f44a006a

View file

@ -59,6 +59,9 @@
;; more than this to make UTF-8 the default coding system: ;; more than this to make UTF-8 the default coding system:
(set-language-environment "UTF-8") (set-language-environment "UTF-8")
;; set-language-enviornment sets default-input-method, which is unwanted
(setq default-input-method nil)
;; Ensure Doom is running out of this file's directory ;; Ensure Doom is running out of this file's directory
(setq user-emacs-directory (file-name-directory load-file-name)) (setq user-emacs-directory (file-name-directory load-file-name))