Decoupling config from nvim (#1038)

This commit is contained in:
Christian Chiarulli 2021-07-19 22:50:07 -04:00 committed by GitHub
parent acb6a7a2ce
commit d02265175f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 63 additions and 39 deletions

View file

@ -58,7 +58,8 @@ M.lsp = function()
else
print "Unsupported system"
end
JAVA_LS_EXECUTABLE = CONFIG_PATH .. "/utils/bin/jdtls"
JAVA_LS_EXECUTABLE = os.getenv "HOME" .. "/.local/share/lunarvim/lvim/utils/bin/jdtls"
require("jdtls").start_or_attach {
on_attach = require("lsp").common_on_attach,