emacs.d

bloated emacs configuration
git clone git://git.ckyln.com/~cem/emacs.d.git
Log | Files | Refs | README

commit 9e19ff9d88dcc1b83522ec4ac64207ecadb718f8
parent e635c7e40f5650d3c201a9ca8c43a0cd453c1ac3
Author: Cem Keylan <cem@ckyln.com>
Date:   Thu, 26 Mar 2020 02:34:11 +0300

define coding system for terminal

Diffstat:
Minit.org | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/init.org b/init.org @@ -35,6 +35,7 @@ - [[#python][Python]] - [[#other-settings][Other Settings]] - [[#dired----ls-dired][Dired -- ls dired]] + - [[#coding-system-for-terminal][Coding System for Terminal]] - [[#docker][Docker]] - [[#backup-options][Backup Options]] - [[#set-browser][Set Browser]] @@ -569,6 +570,11 @@ not have a =--dired= option. Let's disable it. (setq dired-use-ls-dired nil) #+END_SRC +** Coding System for Terminal + I want emacs to use utf-8 so my terminal isn't filled with '?' characters. +#+BEGIN_SRC emacs-lisp +(set-terminal-coding-system 'utf-8) +#+END_SRC ** Docker I got this tramp configuration from [[https://willschenk.com/articles/2020/tramp_tricks]] #+BEGIN_SRC emacs-lisp