diff options
| author | 2025-07-17 01:06:52 +0300 | |
|---|---|---|
| committer | 2025-07-17 01:11:15 +0300 | |
| commit | df6fe13ceeaab375ca014a59716492dbbac59cae (patch) | |
| tree | fc4d10a7f4ef770326fcdd0375649d4c326fb32e /emacs | |
| parent | emacs: Let's try a proportional font! (diff) | |
| download | dotfiles-df6fe13ceeaab375ca014a59716492dbbac59cae.tar.gz dotfiles-df6fe13ceeaab375ca014a59716492dbbac59cae.tar.xz dotfiles-df6fe13ceeaab375ca014a59716492dbbac59cae.zip | |
emacs: UTF-8, UTF-8, UTF-8
Diffstat (limited to 'emacs')
| -rw-r--r-- | emacs/.config/emacs/early-init.el | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/emacs/.config/emacs/early-init.el b/emacs/.config/emacs/early-init.el index 6892501..0a05906 100644 --- a/emacs/.config/emacs/early-init.el +++ b/emacs/.config/emacs/early-init.el | |||
| @@ -9,8 +9,15 @@ | |||
| 9 | (setq package-enable-at-startup nil) | 9 | (setq package-enable-at-startup nil) |
| 10 | 10 | ||
| 11 | ;; UTF-8 duh | 11 | ;; UTF-8 duh |
| 12 | (set-charset-priority 'unicode) | ||
| 12 | (set-language-environment "UTF-8") | 13 | (set-language-environment "UTF-8") |
| 13 | (setq selection-coding-system 'utf-8 | 14 | (prefer-coding-system 'utf-8) |
| 15 | (set-default-coding-systems 'utf-8) | ||
| 16 | (set-terminal-coding-system 'utf-8) | ||
| 17 | (set-keyboard-coding-system 'utf-8) | ||
| 18 | (set-selection-coding-system 'utf-8) | ||
| 19 | (setq locale-coding-system 'utf-8 | ||
| 20 | default-process-coding-system '(utf-8-unix . utf-8-unix) | ||
| 14 | default-input-method nil) | 21 | default-input-method nil) |
| 15 | 22 | ||
| 16 | (setq load-prefer-newer t) | 23 | (setq load-prefer-newer t) |