From 384868d0be58a92c88f9fc4c4005d7518fcbb23a Mon Sep 17 00:00:00 2001 From: Hayden <22327045+hbjydev@users.noreply.github.com> Date: Fri, 23 May 2025 15:22:46 +0100 Subject: feat: add kotlin_lsp from jetbrains #3867 --- lsp/kotlin_lsp.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lsp/kotlin_lsp.lua (limited to 'lsp/kotlin_lsp.lua') diff --git a/lsp/kotlin_lsp.lua b/lsp/kotlin_lsp.lua new file mode 100644 index 00000000..a36faa8e --- /dev/null +++ b/lsp/kotlin_lsp.lua @@ -0,0 +1,21 @@ +---@brief +---Pre-alpha official Kotlin support for Visual Studio Code and an implementation of Language Server Protocol for the Kotlin language. +--- +---The server is based on IntelliJ IDEA and the IntelliJ IDEA Kotlin Plugin implementation. + +--- The presence of one of these files indicates a project root directory +-- +-- These are configuration files for the various build systems supported by +-- Kotlin. +return { + filetypes = { 'kotlin' }, + cmd = { 'kotlin-lsp', '--stdio' }, + root_markers = { + 'settings.gradle', -- Gradle (multi-project) + 'settings.gradle.kts', -- Gradle (multi-project) + 'pom.xml', -- Maven + 'build.gradle', -- Gradle + 'build.gradle.kts', -- Gradle + 'workspace.json', -- Used to integrate your own build system + }, +} -- cgit v1.2.3-70-g09d2