如何在spacemacs中安装flycheck?

How to install flycheck in spacemacs?

我正尝试在我的 spacemacs 设置中使用 flycheck

“12.4.0.6 次要模式”下的 spacemacs documentationflycheck 列为可以使用 SPC t s 切换的模式。

但是,我的 spacemacs 设置中没有这样的选项。按 SPC t 会出现一组不包括 s.

的选项

而且,如果我仍然按 SPC t s,我会收到消息 SPC t s is undefined

如何安装 flycheck 以与 spacemacs 一起使用?

Flycheck 作为 syntax-checking 层的一部分提供。您需要安装该层才能使用 Spc t s 键绑定。查看图层文档 here。要使用它,只需将 syntax-checking 添加到您的 dotspacemacs-configuration-layers 列表中,如下所示:

(setq-default
 dotspacemacs-configuration-layers
    '(
      syntax-checking
      )
 )