aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/codebook.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lsp/codebook.lua')
-rw-r--r--.config/nvim/lsp/codebook.lua37
1 files changed, 0 insertions, 37 deletions
diff --git a/.config/nvim/lsp/codebook.lua b/.config/nvim/lsp/codebook.lua
deleted file mode 100644
index dea265c..0000000
--- a/.config/nvim/lsp/codebook.lua
+++ /dev/null
@@ -1,37 +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`.
----
-
----@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',
- 'toml',
- 'text',
- 'typescript',
- 'typescriptreact',
- },
- root_markers = { '.git', 'codebook.toml', '.codebook.toml' },
-}