From 396c1fea41a31b9a7bd0489cfd9ca95ba011e121 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Thu, 28 Apr 2016 21:59:27 -0500 Subject: [PATCH] Made UTF-8 the default emacs system encoding --- home/.emacs.d/init.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/.emacs.d/init.el b/home/.emacs.d/init.el index a858cb5..5de4afd 100644 --- a/home/.emacs.d/init.el +++ b/home/.emacs.d/init.el @@ -2,6 +2,11 @@ (setq user-full-name "Drew Short") (setq user-email-address "warrick@sothr.com") +;; Set UTF-8 as the default encoding +(prefer-coding-system 'utf-8) +(setq coding-system-for-read 'utf-8) +(setq coding-system-for-write 'utf-8) + ;; Load common lisp (require 'cl)