diff options
| author | bugreporter23 <bugreporter23@gmail.com> | 2025-07-18 13:40:53 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-18 10:40:53 -0700 |
| commit | cc6b21ea16cc12df290152f02513a8bd0ed9d932 (patch) | |
| tree | df1b456f080dba9de1dd2c59724ad436a93222fb /lsp/clangd.lua | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-cc6b21ea16cc12df290152f02513a8bd0ed9d932.tar nvim-lspconfig-cc6b21ea16cc12df290152f02513a8bd0ed9d932.tar.gz nvim-lspconfig-cc6b21ea16cc12df290152f02513a8bd0ed9d932.tar.bz2 nvim-lspconfig-cc6b21ea16cc12df290152f02513a8bd0ed9d932.tar.lz nvim-lspconfig-cc6b21ea16cc12df290152f02513a8bd0ed9d932.tar.xz nvim-lspconfig-cc6b21ea16cc12df290152f02513a8bd0ed9d932.tar.zst nvim-lspconfig-cc6b21ea16cc12df290152f02513a8bd0ed9d932.zip | |
feat(clangd): remove proto filetype support #3959
Since #2125, we now have rich protobuf language servers and formatters such as
[buf](https://github.com/bufbuild/buf).
There are open hacks to getting around this by explicitly overriding the
default settings, but it's more idiomatic to have sensible defaults in
the protobuf lsp repo.
Diffstat (limited to 'lsp/clangd.lua')
| -rw-r--r-- | lsp/clangd.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/clangd.lua b/lsp/clangd.lua index 3a857143..a4443779 100644 --- a/lsp/clangd.lua +++ b/lsp/clangd.lua @@ -62,7 +62,7 @@ end return { cmd = { 'clangd' }, - filetypes = { 'c', 'cpp', 'objc', 'objcpp', 'cuda', 'proto' }, + filetypes = { 'c', 'cpp', 'objc', 'objcpp', 'cuda' }, root_markers = { '.clangd', '.clang-tidy', |
