Created
January 8, 2015 15:21
-
-
Save Hasimir/a1326110ad4f0ddeb0af to your computer and use it in GitHub Desktop.
My UTF-8 settings in .emacs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; UTF-8 settings | |
(set-terminal-coding-system 'utf-8) | |
(set-keyboard-coding-system 'utf-8) | |
(prefer-coding-system 'utf-8) | |
;; This was added by Custom at some point too: | |
'(current-language-environment "UTF-8") | |
;; Plus I have F7 bound to insert-char to enter the hex for a glyph: | |
(global-set-key [f7] 'insert-char) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment