Skip to content

Instantly share code, notes, and snippets.

@am0c
Created October 5, 2010 08:24
Show Gist options
  • Save am0c/611215 to your computer and use it in GitHub Desktop.
Save am0c/611215 to your computer and use it in GitHub Desktop.
;; 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