Ben Chuanlong Du's Blog

And let it direct your passion with reason.

Disable the Checkers Layer in SpaceVim

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 …