aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/codebook.lua
blob: 8a8700b5b4d8d000fd9edae7e2d0ed976460f991 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---@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`.
---
return {
  cmd = { 'codebook-lsp', 'serve' },
  filetypes = {
    'c',
    'css',
    'go',
    'haskell',
    'html',
    'javascript',
    'javascriptreact',
    'markdown',
    'python',
    'php',
    'ruby',
    'rust',
    'toml',
    'text',
    'typescript',
    'typescriptreact',
  },
  root_markers = { '.git', 'codebook.toml', '.codebook.toml' },
}