From 899f742851bc43e03f3b67d7de7119621c5ea23c Mon Sep 17 00:00:00 2001 From: Marc Date: Mon, 16 Jun 2025 15:25:26 +0200 Subject: [PATCH] coding system to use lf as line ending on windows, too --- config.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index e43ec3d..e1710cd 100644 --- a/config.org +++ b/config.org @@ -310,7 +310,8 @@ Restore it to reasonable value after init. Also stop garbage collection during m #+begin_src emacs-lisp (set-charset-priority 'unicode) (setq-default locale-coding-system 'utf-8 - default-process-coding-system '(utf-8-unix . utf-8-unix)) + default-process-coding-system '(utf-8-unix . utf-8-unix) + buffer-file-coding-system 'utf-8-unix) (set-terminal-coding-system 'utf-8) (set-keyboard-coding-system 'utf-8) (set-selection-coding-system 'utf-8)