如何在spacemacs中安装flycheck?

时间:2018-01-07 22:15:12

标签: spacemacs flycheck

我正在尝试将flycheck用于我的spacemacs设置。

spacemacs documentation," 12.4.0.6次要模式"将flycheck列为可以使用SPC t s切换的模式。

flycheck spacemacs documentation

但是,我的spacemacs设置中没有这样的选项。按SPC t会引发一组不包含s的选项。

spacemacs no flycheck

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

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

1 个答案:

答案 0 :(得分:3)

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

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