diff options
| author | Ravi R Kiran <aine.marina@gmail.com> | 2019-06-17 03:41:54 (GMT) |
|---|---|---|
| committer | Ravi R Kiran <aine.marina@gmail.com> | 2019-06-17 03:41:54 (GMT) |
| commit | 035e192f25ceb8f70f6a1f58f857b723e52df282 (patch) | |
| tree | 231b9f1bc4452c4a69a535f4ee22137be891cf3d | |
| parent | 4a4809b65dfcc2a37b906e8aabde7c3b8feae91d (diff) | |
| download | dotemacs-035e192f25ceb8f70f6a1f58f857b723e52df282.zip dotemacs-035e192f25ceb8f70f6a1f58f857b723e52df282.tar.gz dotemacs-035e192f25ceb8f70f6a1f58f857b723e52df282.tar.bz2 | |
Minimum font size
| -rw-r--r-- | init.el | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -24,7 +24,7 @@ "Return existing font which first match." (find-if (lambda (f) (find-font (font-spec :name f))) fonts)) (let ((fontval (font-candidate '"Inconsolata" "Source Code Pro" "Anonymous Pro"))) - (when fontval (set-face-attribute 'default nil :font fontval))) + (when fontval (set-face-attribute 'default nil :font fontval :height 110))) (when (find-font (font-spec :name "Symbola")) (set-fontset-font "fontset-default" nil (font-spec :size 20 :name "Symbola"))) @@ -33,9 +33,7 @@ ;; Initialize package handling: currently using only the official repository and MELPA (setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/") - ;("original" . "http://tromey.com/elpa/") ("org" . "http://orgmode.org/elpa/") - ;("marmalade" . "http://marmalade-repo.org/packages/") ("melpa" . "http://melpa.org/packages/"))) (add-to-list 'load-path (ravi/emacs-file "lisp/")) (add-to-list 'load-path (ravi/emacs-file "site-lisp/")) |
