From a01c5a9a8cc28017e0cb705b54b9b93681f6a80d Mon Sep 17 00:00:00 2001 From: Mitch Tishmack Date: Sun, 6 Sep 2020 22:17:33 -0500 Subject: [PATCH] Add unicode-escape package Helps with utf-8 and also set the language-environment to utf8 as well to be more sure that utf8 is the default. --- emacs.org | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emacs.org b/emacs.org index 824fda2..921f9d2 100644 --- a/emacs.org +++ b/emacs.org @@ -234,6 +234,11 @@ So if we don't know, call it text-mode. utf8 is the best. Default to it. +#+BEGIN_SRC emacs-lisp +(use-package unicode-escape :ensure t) +(set-language-environment "UTF-8") +#+END_SRC + #+BEGIN_SRC emacs-lisp (custom-set-variables '(locale-coding-system 'utf-8)) (set-terminal-coding-system 'utf-8)