new config old version is now on v1 branch
This commit is contained in:
1
after/ftplugin/help.lua
Normal file
1
after/ftplugin/help.lua
Normal file
@ -0,0 +1 @@
|
||||
vim.treesitter.start()
|
11
after/ftplugin/java.lua
Normal file
11
after/ftplugin/java.lua
Normal file
@ -0,0 +1,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]
|
||||
),
|
||||
}
|
Reference in New Issue
Block a user