You can use the following command in SpaceVim to disable the checkers
layer temporarily.
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
-
https://spacevim.org/layers/checkers/
-
https://github.com/SpaceVim/SpaceVim/issues/399
-
https://github.com/SpaceVim/SpaceVim/issues/3163