1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
| local utils = require "astronvim.utils"
return { { "nvim-treesitter/nvim-treesitter", opts = function(_, opts) if opts.ensure_installed ~= "all" then opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, { "java", "html" }) end end, }, { "williamboman/mason-lspconfig.nvim", opts = function(_, opts) opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, { "jdtls", "lemminx" }) end, },
{ "jay-babu/mason-null-ls.nvim", opts = function(_, opts) opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, "clang_format") end, },
{ "mfussenegger/nvim-jdtls", ft = { "java" }, init = function() astronvim.lsp.skip_setup = utils.list_insert_unique(astronvim.lsp.skip_setup, "jdtls") end, dependencies = { "williamboman/mason-lspconfig.nvim" }, opts = function(_, opts) local root_markers = { ".git", "mvnw", "gradlew", "pom.xml", "build.gradle", ".project" } local root_dir = require("jdtls.setup").find_root(root_markers) local project_name = vim.fn.fnamemodify(vim.fn.getcwd(), ":p:h:t") local workspace_dir = vim.fn.stdpath "data" .. "/site/java/workspace-root/" .. project_name os.execute("mkdir " .. workspace_dir)
local os if vim.fn.has "mac" == 1 then os = "mac" elseif vim.fn.has "unix" == 1 then os = "linux" elseif vim.fn.has "win32" == 1 then os = "win" end
if not os or os == "" then require("astronvim.utils").notify("jdtls: Could not detect valid OS", vim.log.levels.ERROR) end
local defaults = { cmd = { "java", "-Declipse.application=org.eclipse.jdt.ls.core.id1", "-Dosgi.bundles.defaultStartLevel=4", "-Declipse.product=org.eclipse.jdt.ls.core.product", "-Dlog.protocol=true", "-Dlog.level=ALL", "-javaagent:" .. vim.fn.expand "$MASON/share/jdtls/lombok.jar", "-Xms1g", "--add-modules=ALL-SYSTEM", "--add-opens", "java.base/java.util=ALL-UNNAMED", "--add-opens", "java.base/java.lang=ALL-UNNAMED", "-jar", vim.fn.expand "$MASON/share/jdtls/plugins/org.eclipse.equinox.launcher.jar", "-configuration", vim.fn.expand "$MASON/share/jdtls/config", "-data", workspace_dir, }, root_dir = root_dir, settings = { java = { eclipse = { downloadSources = true, }, configuration = { updateBuildConfiguration = "interactive", }, maven = { downloadSources = true, },
implementationsCodeLens = { enabled = true, }, referencesCodeLens = { enabled = true, }, }, signatureHelp = {
enabled = true, }, completion = { favoriteStaticMembers = { "org.hamcrest.MatcherAssert.assertThat", "org.hamcrest.Matchers.*", "org.hamcrest.CoreMatchers.*", "org.junit.jupiter.api.Assertions.*", "java.util.Objects.requireNonNull", "java.util.Objects.requireNonNullElse", "org.mockito.Mockito.*", }, }, sources = { organizeImports = { starThreshold = 9999, staticStarThreshold = 9999, }, }, }, init_options = { }, handlers = { ["$/progress"] = function() end, }, filetypes = { "java" }, on_attach = function(client, bufnr) require("astronvim.utils.lsp").on_attach(client, bufnr) end, }
if not opts then opts = {} end
opts = vim.tbl_deep_extend("keep", opts, defaults)
return opts end, config = function(_, opts) vim.api.nvim_create_autocmd("Filetype", { pattern = "java", callback = function() if opts.root_dir and opts.root_dir ~= "" then require("jdtls").start_or_attach(opts) else require("astronvim.utils").notify( "jdtls: root_dir not found. Please specify a root marker", vim.log.levels.ERROR ) end end, }) vim.api.nvim_create_autocmd("LspAttach", { pattern = "*.java", callback = function(args) local client = vim.lsp.get_client_by_id(args.data.client_id) end, }) end, }, }
|