summaryrefslogtreecommitdiff
path: root/nvim/lsp/codebook.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lsp/codebook.lua')
-rwxr-xr-xnvim/lsp/codebook.lua32
1 files changed, 0 insertions, 32 deletions
diff --git a/nvim/lsp/codebook.lua b/nvim/lsp/codebook.lua
deleted file mode 100755
index 8a8700b..0000000
--- a/nvim/lsp/codebook.lua
+++ /dev/null
@@ -1,32 +0,0 @@
----@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' },
-}