diff options
| -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) |