emacs
-
emacs korean font - 이멕스 한글 폰트Computer/linux 2014. 6. 7. 16:21
edit ~/.emacs, and add the following lines (when window-system (set-face-font 'default "-outline-Droid Sans Mono-normal-normal-normal-mono-14-*-*-*-c-*-iso10646-1") (set-fontset-font "fontset-default" '(#x1100 . #xffdc) '("나눔고딕코딩" . "unicode-bmp")) ;; 유니코드 한글영역 (set-fontset-font "fontset-default" '(#xe0bc . #xf66e) '("나눔굴림" . "unicode-bmp")) ;; 유니코드 사용자 영역 ) (defadvice switch-to-buffer (after ac..
-
emacs 한글 폰트 및 한글 입력Computer/linux 2010. 7. 22. 02:58
Put Droid Sans Mono TTF font and other TTF fonts into /usr/share/fonts/ directory. See 2007/08/08 - [computer/linux] - How to use MS windows fonts and ttf in the Ubuntu Linux Add the following lines into ~/.emacs file (global-set-key [?\S- ] 'toggle-input-method) (global-set-key [f5] 'insert-date) ;; not necessary for 23-2 emacs ;;(global-set-key (kbd "C-x ") 'previous-buffer) ;;(global-set-key ..