diff --git a/lua/lspconfig/server_configurations/typos_lsp.lua b/lua/lspconfig/server_configurations/typos_lsp.lua new file mode 100644 index 0000000000..7d5da0ad66 --- /dev/null +++ b/lua/lspconfig/server_configurations/typos_lsp.lua @@ -0,0 +1,21 @@ +local util = require 'lspconfig.util' + +return { + default_config = { + cmd = { 'typos-lsp' }, + filetypes = { '*' }, + root_dir = util.root_pattern('pyproject.toml', '.git'), + single_file_support = true, + settings = {}, + }, + docs = { + description = [[ +https://github.com/crate-ci/typos +https://github.com/tekumara/typos-vscode + +A Language Server Protocol implementation for Typos, a low false-positive +source code spell checker, written in Rust. Download it from the releases page +on GitHub: https://github.com/tekumara/typos-vscode/releases + ]], + }, +}