Move lsp config to local file structure
This commit is contained in:
parent
e5c3bb2492
commit
20801272fc
383 changed files with 11829 additions and 114 deletions
28
.config/nvim/lsp/gradle_ls.lua
Normal file
28
.config/nvim/lsp/gradle_ls.lua
Normal 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,
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue