nvim-lspconfig/lsp/java_language_server.lua
Justin M. Keyes ecb74c22b4
fix(docs): docgen.lua reads from lua/*.lua #3708
Problem:
Since configs now live in `lsp/`, the docgen needs to be updated.

Solution:
Read the configs from `lsp/`. Parse the `@brief` docstring to get the
docs.
2025-04-12 19:40:01 -07:00

13 lines
348 B
Lua

---@brief
---
-- https://github.com/georgewfraser/java-language-server
--
-- Java language server
--
-- Point `cmd` to `lang_server_linux.sh` or the equivalent script for macOS/Windows provided by java-language-server
return {
filetypes = { 'java' },
root_markers = { 'build.gradle', 'build.gradle.kts', 'pom.xml', '.git' },
settings = {},
}