Update docstrings for theme & font variables
This commit is contained in:
parent
3cd0db82b8
commit
e38b710f29
1 changed files with 14 additions and 6 deletions
|
@ -1,21 +1,29 @@
|
||||||
;;; core-ui.el -*- lexical-binding: t; -*-
|
;;; core-ui.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(defvar doom-theme nil
|
(defvar doom-theme nil
|
||||||
"A symbol representing the color theme to load.")
|
"A symbol representing the Emacs theme to load at startup.
|
||||||
|
|
||||||
|
This is changed when `load-theme' is used as well.")
|
||||||
|
|
||||||
(defvar doom-font nil
|
(defvar doom-font nil
|
||||||
"The default font to use. Expects a `font-spec'.")
|
"The default font to use. Expects either a `font-spec' or a XFT font string.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
(setq doom-font (font-spec :family \"Fira Mono\" :size 12))
|
||||||
|
(setq doom-font \"Terminus (TTF):pixelsize=12:antialias=off\")")
|
||||||
|
|
||||||
(defvar doom-big-font nil
|
(defvar doom-big-font nil
|
||||||
"The default large font to use when `doom-big-font-mode' is enabled. Expects a
|
"The font to use when `doom-big-font-mode' is enabled. Expects either a
|
||||||
`font-spec'.")
|
`font-spec' or a XFT font string. See `doom-font' for examples.")
|
||||||
|
|
||||||
(defvar doom-variable-pitch-font nil
|
(defvar doom-variable-pitch-font nil
|
||||||
"The default font to use for variable-pitch text. Expects a `font-spec'.")
|
"The font to use for variable-pitch text. Expects either a `font-spec'
|
||||||
|
or a XFT font string. See `doom-font' for examples.")
|
||||||
|
|
||||||
(defvar doom-unicode-font nil
|
(defvar doom-unicode-font nil
|
||||||
"Fallback font for unicode glyphs. Is ignored if :feature unicode is active.
|
"Fallback font for unicode glyphs. Is ignored if :feature unicode is active.
|
||||||
Expects a `font-spec'.")
|
Expects either a `font-spec' or a XFT font string. See `doom-font' for
|
||||||
|
examples.")
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue