From 6294127d2676b474b37cd9d51349aa890be92403 Mon Sep 17 00:00:00 2001 From: Marc Date: Mon, 12 Oct 2020 07:24:22 +0200 Subject: [PATCH] more utf-8 settings --- init.org | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.org b/init.org index fcaa56a..ef8cad0 100644 --- a/init.org +++ b/init.org @@ -160,10 +160,12 @@ Maybe turn it on again at some point before the next major emacs upgrade (save-place-mode 1) ;; saves position in file when it's closed (setq save-place-forget-unreadable-files nil) ;; checks if file is readable before saving position +(set-charset-priority 'unicode) (setq locale-coding-system 'utf-8) (set-terminal-coding-system 'utf-8) (set-keyboard-coding-system 'utf-8) (set-selection-coding-system 'utf-8) +(setq default-process-coding-system '(utf-8-unix . utf-8-unix)) (if *sys/windows* (prefer-coding-system 'utf-8-dos) (prefer-coding-system 'utf-8))