Move lsp config to local file structure

This commit is contained in:
Never Gude 2026-01-15 17:18:59 +01:00
parent e5c3bb2492
commit 20801272fc
383 changed files with 11829 additions and 114 deletions

View file

@ -0,0 +1,39 @@
---@brief
---
--- https://github.com/blopker/codebook
---
--- An unholy spell checker for code.
---
--- `codebook-lsp` can be installed by following the instructions [here](https://github.com/blopker/codebook/blob/main/README.md#installation).
---
--- The default `cmd` assumes that the `codebook-lsp` binary can be found in `$PATH`.
---
---@type vim.lsp.Config
return {
cmd = { 'codebook-lsp', 'serve' },
filetypes = {
'c',
'css',
'gitcommit',
'go',
'haskell',
'html',
'java',
'javascript',
'javascriptreact',
'lua',
'markdown',
'php',
'python',
'ruby',
'rust',
'swift',
'toml',
'text',
'typescript',
'typescriptreact',
'zig',
},
root_markers = { '.git', 'codebook.toml', '.codebook.toml' },
}