Playin around with utf-8

This commit is contained in:
Marcus Kammer 2019-11-19 18:26:42 +01:00
parent e693917767
commit aa577876be

View file

@ -23,7 +23,6 @@ There are two things you can do about this warning:
(add-to-list 'package-archives (cons "gnu" (concat proto "://elpa.gnu.org/packages/")))))
(package-initialize)
(setq custom-file "~/.emacs.d/bundle/custom.el")
(load custom-file :noerror)
@ -44,8 +43,10 @@ There are two things you can do about this warning:
;; UTF-8 FTW
(prefer-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
(set-default-coding-systems 'utf-8)
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
(setq default-buffer-file-coding-system 'utf-8)
(defalias 'yes-or-no-p 'y-or-n-p)
(with-current-buffer "*scratch*" (emacs-lock-mode 'kill))