summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--config.org7
1 files changed, 5 insertions, 2 deletions
diff --git a/config.org b/config.org index e883bd3..74d1a41 100644 --- a/config.org +++ b/config.org
@@ -1153,15 +1153,18 @@ I'm going to try it for now.
1153It's 2020. Let's encode files like it is. 1153It's 2020. Let's encode files like it is.
1154 1154
1155#+begin_src emacs-lisp :noweb-ref settings 1155#+begin_src emacs-lisp :noweb-ref settings
1156 (prefer-coding-system 'utf-8)
1157 (set-charset-priority 'unicode) 1156 (set-charset-priority 'unicode)
1157 (set-language-environment "UTF-8")
1158
1159 (prefer-coding-system 'utf-8)
1158 (set-default-coding-systems 'utf-8) 1160 (set-default-coding-systems 'utf-8)
1159 (set-terminal-coding-system 'utf-8) 1161 (set-terminal-coding-system 'utf-8)
1160 (set-keyboard-coding-system 'utf-8) 1162 (set-keyboard-coding-system 'utf-8)
1161 (set-selection-coding-system 'utf-8) 1163 (set-selection-coding-system 'utf-8)
1162 (set-language-environment "UTF-8")
1163 1164
1164 (setq-default locale-coding-system 'utf-8 1165 (setq-default locale-coding-system 'utf-8
1166 coding-system-for-read 'utf-8
1167 coding-system-for-write 'utf-8
1165 buffer-file-coding-system 'utf-8 1168 buffer-file-coding-system 'utf-8
1166 org-export-coding-system 'utf-8 1169 org-export-coding-system 'utf-8
1167 default-process-coding-system '(utf-8-unix . utf-8-unix) 1170 default-process-coding-system '(utf-8-unix . utf-8-unix)