blob: 575ab1c5790c134494d2f38905d38e1ad8e69340 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
local status_ok, jdtls = pcall(require, "jdtls")
if not status_ok then
return
end
jdtls.start_or_attach {
cmd = {'/home/squibid/Downloads/jdt-lang-serv/bin/jdtls'},
root_dir = vim.fs.dirname(
vim.fs.find({ 'gradlew', '.git', 'mvnw' }, { upward = true })[1]
),
}
|