aboutsummaryrefslogtreecommitdiffstats
path: root/_emacs.d/personal/fonts.el
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@gmail.com>2016-02-23 10:46:35 +0800
committerAaron LI <aaronly.me@gmail.com>2016-02-23 10:46:35 +0800
commit3f495e25a7aef5e5e8350ed3690f8c2d4436dc73 (patch)
treeeeed6018ad19cecf7241e0f613b54db818d9225a /_emacs.d/personal/fonts.el
parentb0f91b1493770784d23023b9ca4933abf00b4ba7 (diff)
downloaddotfiles-3f495e25a7aef5e5e8350ed3690f8c2d4436dc73.tar.bz2
_emacs.d/personal: order configs by adding numeric prefix
Diffstat (limited to '_emacs.d/personal/fonts.el')
-rw-r--r--_emacs.d/personal/fonts.el45
1 files changed, 0 insertions, 45 deletions
diff --git a/_emacs.d/personal/fonts.el b/_emacs.d/personal/fonts.el
deleted file mode 100644
index d172a92..0000000
--- a/_emacs.d/personal/fonts.el
+++ /dev/null
@@ -1,45 +0,0 @@
-;;; ~/.emacs.d/personal/fonts.el --- Fonts configurations for Emacs.
-;;
-;; -*- mode: emacs-lisp -*-
-;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp:
-;;
-;; Credits:
-;; [1] http://baohaojun.github.io/perfect-emacs-chinese-font.html
-;; [2] http://zhuoqiang.me/a/torture-emacs
-;;
-;; Aaron LI
-;; 2016-02-22
-;;
-
-;;; Commentary:
-;; English and Chinese fonts configurations for Emacs.
-
-;;; Code:
-
-;; To increase the Unicode coverage of your favorite programming font
-;; https://github.com/cpitclaudel/monospacifier
-;(dolist (ft (fontset-list))
-; (set-fontset-font ft 'unicode
-; (font-spec :name "Inconsolata"))
-; (set-fontset-font ft 'unicode
-; (font-spec :name "Symbola monospacified for Inconsolata")
-; nil 'append))
-
-;; English font
-;; change the default font for the current frame, as well as future frames
-;(set-face-attribute 'default nil :font "Terminus:pixelsize=16")
-(set-face-attribute 'default nil :font "Inconsolata:pixelsize=14")
-
-;; Chinese font
-;; available charset: kana han symbol cjk-misc bopomofo
-;; font-spec:
-;; `:size': either a non-negative integer that specifies the pixel size,
-;; or a floating-point number that specifies the point size.
-(dolist (charset '(kana han cjk-misc bopomofo))
- (set-fontset-font (frame-parameter nil 'font)
- charset
- (font-spec :family "WenQuanYi Zen Hei" :size 14)))
-;; rescale chinese font to match: 1 Chinese = 2 English characters
-;; (however, this will cause that the Chinese characters are higher)
-;(setq face-font-rescale-alist '(("WenQuanYi Bitmap Song" . 1.2)))
-