Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Disable the Checkers Layer in SpaceVim

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

The SpaceVim project has been abandoned. Check AstroVim instead.

You can use the following command in SpaceVim to disable the checkers layer temporarily.

:::vim
let g:spacevim_lint_on_save = 0

If you want to disable the checkers layer permanently, add the following lines into your init.toml file.

[[layers]]
name = "checkers"
enable = false

It is suggested that you disable the checkers layer permanently and use language server protocol (LSP) plugins instead as LSP plugins are better alternatives to the checkers layer.

References