mirror of https://github.com/sgoudham/dotfiles.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
378 B
Lua
7 lines
378 B
Lua
local root_markers = { "gradlew", "mvnw", ".git", "pom.xml", "build.gradle" }
|
|
local root_dir = require("jdtls.setup").find_root(root_markers)
|
|
local workspace_folder = os.getenv("HOME") .. "/.local/share/eclipse/" .. vim.fn.fnamemodify(root_dir, ":p:h:t")
|
|
|
|
local config = require("lsp.java").make_jdtls_config(root_dir, workspace_folder)
|
|
require("jdtls").start_or_attach(config)
|