mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
15 lines
292 B
Lua
15 lines
292 B
Lua
return {
|
|
cmd = { "kotlin-language-server" },
|
|
filetypes = { "kotlin" },
|
|
root_dir = require("lspconfig.util").root_pattern(
|
|
"build.gradle.kts",
|
|
"build.gradle",
|
|
"settings.gradle",
|
|
"gradlew",
|
|
"pom.xml",
|
|
"build.gradle.kts",
|
|
"build.kts",
|
|
".git"
|
|
),
|
|
singe_file_support = true,
|
|
}
|