LoginSignup
4
4

More than 5 years have passed since last update.

emacsのフォントの設定 M-x view-hello-file

Last updated at Posted at 2016-05-26

参考: NTEmacs 23 で (view-hello-file) ぜんぶ表示してみた
M-x view-hello-file

ubuntu 16.04

ubuntu1.png
ubuntu2.png

fedora 24 beta

fedora1.png
fedora2.png

windows 10

win01.png
win02.png

windows 10 で試行錯誤してフォントの設定を追加。

(set-face-attribute 'default nil :family "Consolas")
(set-face-attribute 'default nil :height 120)
(set-fontset-font t 'devanagari (font-spec :family "Nirmala UI"))
(set-fontset-font t 'bengali (font-spec :family "Nirmala UI"))
(set-fontset-font t 'gujarati (font-spec :family "Nirmala UI"))
(set-fontset-font t 'kannada (font-spec :family "Nirmala UI"))
(set-fontset-font t 'malayalam (font-spec :family "Nirmala UI"))
(set-fontset-font t 'oriya (font-spec :family "Nirmala UI"))
(set-fontset-font t 'gurmukhi (font-spec :family "Nirmala UI"))
(set-fontset-font t 'tamil (font-spec :family "Nirmala UI"))
(set-fontset-font t 'telugu (font-spec :family "Nirmala UI"))
(set-fontset-font t 'burmese (font-spec :family "Padauk"))
(set-fontset-font
 t
 (cons (decode-char 'ucs #x10330)
       (decode-char 'ucs #x1034F))
 (font-spec :family "Segoe UI Historic"))
(set-fontset-font
 t
 (cons (decode-char 'ucs #x1F000)
       (decode-char 'ucs #x1F6FF))
 (font-spec :family "Segoe UI Symbol"))
(set-fontset-font
 t
 (cons (decode-char 'ucs #x1F700)
       (decode-char 'ucs #x1FfFF))
 (font-spec :family "Symbola"))

(set-fontset-font t 'japanese-jisx0208 (font-spec :family "MeiryoKe_Console"))
(add-to-list 'face-font-rescale-alist '("MeiryoKe_Console" . 1.09))

win11.png
win12.png

emacs-w3m https://www.wikipedia.org/

w1.png
w2.png
w3.png
w4.png
w5.png
w6.png
w7.png

ALL実体参照!

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4