spacemacs 使用自定义主题时, 启动画面出现问题

自己使用的是 spacemacs, 最近在尝试 doom-nord 主题. 但是在启动时 dashboard 界面会出现问题, 如图: 54 具体说明, 就是会出现下图中红色矩形框标识的, 右上角的版本号部分数字消失, 并且最左边会出现一竖条的数字.

自己猜测是因为 init.el 文件中对字体的设置与 spacemacs 默认的不一致导致? 我的 init.el 文件中对字体的设置如下:

dotspacemacs-default-font '("Source Code Pro" :size
                                                 16
                                                 :weight
                                                 normal
                                                 :width
                                                 normal
                                                 :powerline-scale
                                                 1.1)

doom-nord 主题的配置如下:

(defun czqhurricane-ui/init-doom-themes ()
  (use-package doom-themes
    :init
    (load-theme 'doom-nord t)
    :custom
    (doom-themes-enable-italic t)
    (doom-themes-enable-bold t)
    :config
    (doom-themes-neotree-config)
    (doom-themes-org-config)))

自己经验不足, 不知道如何解决? 哪位朋友碰过相似问题, 可以指点下.

没用过 doom 和 space,但是左边那个不就是正常的行号么⋯⋯

那这个行号可以如何设置进行取消了?

打开doom-nord-theme.el,发现((line-number &override) :foreground (doom-lighten 'base5 0.2)),

M-x describe-face line-number:

Face for displaying line numbers.
This face is used when ‘display-line-numbers’ is non-nil.

谢谢,我确实是 line-number 的问题。