summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-02-23 17:56:21 -0600
committerCase Duckworth2021-02-23 17:56:21 -0600
commit61d2f4551577b511e1bab61b8b4bc920621a7b33 (patch)
tree8cfefa870d0367a6961d434c50b9b8deb83b7c27 /config.org
parentgitconfig: Add URL aliases (diff)
downloademacs-61d2f4551577b511e1bab61b8b4bc920621a7b33.tar.gz
emacs-61d2f4551577b511e1bab61b8b4bc920621a7b33.zip
Reorganize UTF-8 thing
Diffstat (limited to 'config.org')
-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)