Move lsp config to local file structure

This commit is contained in:
Never Gude 2026-01-15 17:18:59 +01:00
parent e5c3bb2492
commit 20801272fc
383 changed files with 11829 additions and 114 deletions

View file

@ -0,0 +1,28 @@
---@brief
---
--- https://github.com/microsoft/vscode-gradle
---
--- Microsoft's lsp server for gradle files
---
--- If you're setting this up manually, build vscode-gradle using `./gradlew installDist` and point `cmd` to the `gradle-language-server` generated in the build directory
local bin_name = 'gradle-language-server'
if vim.fn.has 'win32' == 1 then
bin_name = bin_name .. '.bat'
end
---@type vim.lsp.Config
return {
filetypes = { 'groovy' },
root_markers = {
'settings.gradle', -- Gradle (multi-project)
'build.gradle', -- Gradle
},
cmd = { bin_name },
-- gradle-language-server expects init_options.settings to be defined
init_options = {
settings = {
gradleWrapperEnabled = true,
},
},
}