Update docs for displaying icons when using server.

Close #247.
This commit is contained in:
Vincent Zhang 2019-10-31 16:49:09 +08:00
parent 7a5e64e760
commit 271e840832
2 changed files with 3 additions and 1 deletions

View file

@ -188,6 +188,7 @@ Run `M-x customize-group RET doom-modeline RET` or set the variables.
(setq doom-modeline-buffer-file-name-style 'truncate-upto-project)
;; Whether display icons in mode-line. It respects `all-the-icons-color-icons'.
;; While using the server mode in GUI, should set the value explicitly.
(setq doom-modeline-icon (display-graphic-p))
;; Whether display the icon for `major-mode'. It respects `doom-modeline-icon'.

View file

@ -200,7 +200,8 @@ Specify another one if you encounter the issue."
(defcustom doom-modeline-icon (display-graphic-p)
"Whether display icons in mode-line.
It respects `all-the-icons-color-icons'."
It respects `all-the-icons-color-icons'.
While using the server mode in GUI, should set the value explicitly."
:type 'boolean
:group 'doom-modeline)