Created
October 5, 2010 08:24
-
-
Save am0c/611215 to your computer and use it in GitHub Desktop.
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
;; minimalist emacs configuration | |
;; for korean emacs starter | |
;; language setting | |
(setq default-input-method "korean-hangul") | |
(global-set-key (kbd "<Hangul>") 'toggle-input-method) | |
;; font setting | |
(set-default-font "Consolas-10") | |
(set-fontset-font t '(#x1100 . #xffdc) '("Malgun Gothic" . "unicode-bmp")) | |
(set-fontset-font t '(#xe0bc . #xf66e) '("Malgun Gothic" . "unicode-bmp")) | |
;; suport more languages? | |
(set-fontset-font t 'kana '("Kochi Gothic" . "unicode-bmp")) | |
(set-fontset-font t 'han '("Arial" . "unicode-bmp")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment