diff options
author | Case Duckworth | 2021-02-23 17:56:21 -0600 |
---|---|---|
committer | Case Duckworth | 2021-02-23 17:56:21 -0600 |
commit | 61d2f4551577b511e1bab61b8b4bc920621a7b33 (patch) | |
tree | 8cfefa870d0367a6961d434c50b9b8deb83b7c27 | |
parent | gitconfig: Add URL aliases (diff) | |
download | emacs-61d2f4551577b511e1bab61b8b4bc920621a7b33.tar.gz emacs-61d2f4551577b511e1bab61b8b4bc920621a7b33.zip |
Reorganize UTF-8 thing
-rw-r--r-- | config.org | 7 |
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. | |||
1153 | It's 2020. Let's encode files like it is. | 1153 | It'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) |