Don't enable unicode characters fallback by default.

Close #254.
This commit is contained in:
Vincent Zhang 2019-11-12 01:27:22 +08:00
parent 700c7d3d49
commit a80cf92417
2 changed files with 2 additions and 2 deletions

View file

@ -206,7 +206,7 @@ Run `M-x customize-group RET doom-modeline RET` or set the variables.
(setq doom-modeline-buffer-modification-icon t)
;; Whether to use unicode as a fallback (instead of ASCII) when not using icons.
(setq doom-modeline-unicode-fallback t)
(setq doom-modeline-unicode-fallback nil)
;; Whether display the minor modes in mode-line.
(setq doom-modeline-minor-modes (featurep 'minions))

View file

@ -233,7 +233,7 @@ It respects `doom-modeline-icon' and `doom-modeline-buffer-state-icon'."
:type 'boolean
:group 'doom-modeline)
(defcustom doom-modeline-unicode-fallback t
(defcustom doom-modeline-unicode-fallback nil
"Whether to use unicode as a fallback (instead of ASCII) when not using icons."
:type 'boolean
:group 'doom-modeline)