mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
15 lines
284 B
Lua
15 lines
284 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"
|
||
|
),
|
||
|
}
|