This lsp performs spell checking in source code files, using the cspell library.
This is a fork of vscode-spell-checker and adapted to work with the
This was intended as a fork to but its now rewriten to be general basic spell check LSP.
Tested on Helix text editor, Neovim.
Community support for Zed by @mantou132 zed-cspell
npm install -g @vlabo/cspell-lsp
helix/languages.toml:
[language-server.cspell]
command = "cspell-lsp"
args = ["--stdio", "--dictionary", "<path to dictionary file>"]
# Add for every language that you want to spell check
[[language]]
name = "rust"
language-servers = ["rust-analyzer", "cspell"]
[[language]]
name = "cpp"
language-servers = [ "clangd", "cspell" ]
[[language]]
name = "markdown"
language-servers = [ "marksman", "cspell" ]
For reference https://github.com/helix-editor/helix/blob/86023cf1e6c9ab12446061e40c838335c5790979/languages.toml
local lsp_configurations = require('lspconfig.configs')
if not lsp_configurations.cspell_lsp then
lsp_configurations.cspell_lsp = {
default_config = {
cmd = {"<path-to-cspell-lsp>", "--stdio", "--dictionary", "<path-to-dictionery>"},
filetypes = {"go", "rust", "js", "ts", "html", "css", "json", "yaml", "markdown", "gitcommit"},
root_dir = require('lspconfig.util').root_pattern('.git')
}
}
end
require('lspconfig').cspell_lsp.setup({})
npm install
npm run build