{"id":13409532,"url":"https://github.com/mfussenegger/nvim-jdtls","last_synced_at":"2025-05-14T16:13:41.711Z","repository":{"id":37076657,"uuid":"255639178","full_name":"mfussenegger/nvim-jdtls","owner":"mfussenegger","description":"Extensions for the built-in LSP support in Neovim for eclipse.jdt.ls","archived":false,"fork":false,"pushed_at":"2025-04-11T07:22:18.000Z","size":265,"stargazers_count":1255,"open_issues_count":11,"forks_count":71,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-04-13T01:56:28.602Z","etag":null,"topics":["java","lsp-client","neovim","neovim-plugin"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mfussenegger.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["mfussenegger"]}},"created_at":"2020-04-14T14:54:41.000Z","updated_at":"2025-04-11T17:34:55.000Z","dependencies_parsed_at":"2023-10-14T14:05:31.356Z","dependency_job_id":"0e6d38f5-3c50-4aa3-b33d-05e6876c336e","html_url":"https://github.com/mfussenegger/nvim-jdtls","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfussenegger%2Fnvim-jdtls","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfussenegger%2Fnvim-jdtls/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfussenegger%2Fnvim-jdtls/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfussenegger%2Fnvim-jdtls/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mfussenegger","download_url":"https://codeload.github.com/mfussenegger/nvim-jdtls/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248654050,"owners_count":21140235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","lsp-client","neovim","neovim-plugin"],"created_at":"2024-07-30T20:01:01.706Z","updated_at":"2025-04-13T01:56:34.551Z","avatar_url":"https://github.com/mfussenegger.png","language":"Lua","funding_links":["https://github.com/sponsors/mfussenegger"],"categories":["LSP","Lua"],"sub_categories":["(requires Neovim 0.5)"],"readme":"# nvim-jdtls\n\nExtensions for the built-in [Language Server Protocol][1] support in [Neovim][2] (\u003e= 0.6.0) for [eclipse.jdt.ls][3].\n\n## Audience\n\nThis project follows the [KISS principle][kiss] and targets users with some\nexperience with Neovim, Java and its build tools Maven or Gradle who prefer\nconfiguration as code over GUI configuration. Ease of use is not the main\npriority.\n\nIf you prioritize ease of use over simplicity, you may want to use an\nalternative:\n\n- [coc-java](https://github.com/neoclide/coc-java)\n- [vscode](https://code.visualstudio.com/)\n- [IntelliJ IDEA](https://www.jetbrains.com/idea/)\n- [Eclipse](https://www.eclipse.org/ide/)\n\n## Extensions\n\n- [x] `organize_imports` function to organize imports\n- [x] `extract_variable` function to introduce a local variable\n- [x] `extract_variable_all` function to introduce a local variable and replace all occurrences.\n- [x] `extract_constant` function to extract a constant\n- [x] `extract_method` function to extract a block of code into a method\n- [x] Open class file contents\n- [x] Code action extensions\n  - [x] Generate constructors\n  - [x] Generate `toString` function\n  - [x] `hashCode` and `equals` generation.\n  - [x] Extract variables or methods\n  - [x] Generate delegate methods\n  - [x] Move package, instance method, static method or type\n  - [x] Signature refactoring\n- [x] `javap` command to show bytecode of current file\n- [x] `jol` command to show memory usage of current file (`jol_path` must be set)\n- [x] `jshell` command to open up `jshell` with `classpath` from project set\n- [x] Debugger support via [nvim-dap][5]\n- [x] Optional vscode-java-test extensions\n  - [x] Generate tests via `require(\"jdtls.tests\").generate()`\n  - [x] Jump to tests or subjects via `require(\"jdtls.tests\").goto_subjects()`\n\nTake a look at [a demo](https://github.com/mfussenegger/nvim-jdtls/issues/3) to\nsee some of the functionality in action.\n\n## Plugin Installation\n\n- Requires Neovim (Latest stable (recommended) or nightly)\n- nvim-jdtls is a plugin. Install it like any other Vim plugin:\n  - `git clone https://github.com/mfussenegger/nvim-jdtls.git ~/.config/nvim/pack/plugins/start/nvim-jdtls`\n  - Or with [vim-plug][14]: `Plug 'mfussenegger/nvim-jdtls'`\n  - Or with [packer.nvim][15]: `use 'mfussenegger/nvim-jdtls'`\n  - Or any other plugin manager\n\n\n## Language Server Installation\n\nInstall [eclipse.jdt.ls][3] by following their [Installation instructions](https://github.com/eclipse/eclipse.jdt.ls#installation).\n\n\n## Configuration (quickstart)\n\nAdd the following to `~/.config/nvim/ftplugin/java.lua` (See `:help base-directory`):\n\n```lua\nlocal config = {\n    cmd = {'/path/to/jdt-language-server/bin/jdtls'},\n    root_dir = vim.fs.dirname(vim.fs.find({'gradlew', '.git', 'mvnw'}, { upward = true })[1]),\n}\nrequire('jdtls').start_or_attach(config)\n```\n\n**Important**:\n\n- eclipse.jdt.ls requires Java 21\n- The `jdtls` script requires Python 3.9\n- You'll have to teach eclipse.jdt.ls about your JDK installations by setting\n  up `runtimes` if your projects use a different Java version than the one\n  you're using for eclipse.jdt.ls itself. See `Java XY language features are\n  not available` in the troubleshooting section further below to learn how to\n  do that.\n\nThis should get you started, but will create temporary eclipse data folders\nwhen you open a project. Please read the `Configuration (verbose)` section if\nyou want more control over the configuration or want to understand how things\nwork.\n\n## Configuration (verbose)\n\nTo configure `nvim-jdtls`, add the following in `ftplugin/java.lua` within the\nNeovim configuration base directory (e.g. `~/.config/nvim/ftplugin/java.lua`,\nsee `:help base-directory`).\n\nWatch out for the 💀, it indicates that you must adjust something.\n\n\n```lua\n-- See `:help vim.lsp.start_client` for an overview of the supported `config` options.\nlocal config = {\n  -- The command that starts the language server\n  -- See: https://github.com/eclipse/eclipse.jdt.ls#running-from-the-command-line\n  cmd = {\n\n    -- 💀\n    'java', -- or '/path/to/java21_or_newer/bin/java'\n            -- depends on if `java` is in your $PATH env variable and if it points to the right version.\n\n    '-Declipse.application=org.eclipse.jdt.ls.core.id1',\n    '-Dosgi.bundles.defaultStartLevel=4',\n    '-Declipse.product=org.eclipse.jdt.ls.core.product',\n    '-Dlog.protocol=true',\n    '-Dlog.level=ALL',\n    '-Xmx1g',\n    '--add-modules=ALL-SYSTEM',\n    '--add-opens', 'java.base/java.util=ALL-UNNAMED',\n    '--add-opens', 'java.base/java.lang=ALL-UNNAMED',\n\n    -- 💀\n    '-jar', '/path/to/jdtls_install_location/plugins/org.eclipse.equinox.launcher_VERSION_NUMBER.jar',\n         -- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                       ^^^^^^^^^^^^^^\n         -- Must point to the                                                     Change this to\n         -- eclipse.jdt.ls installation                                           the actual version\n\n\n    -- 💀\n    '-configuration', '/path/to/jdtls_install_location/config_SYSTEM',\n                    -- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^        ^^^^^^\n                    -- Must point to the                      Change to one of `linux`, `win` or `mac`\n                    -- eclipse.jdt.ls installation            Depending on your system.\n\n\n    -- 💀\n    -- See `data directory configuration` section in the README\n    '-data', '/path/to/unique/per/project/workspace/folder'\n  },\n\n  -- 💀\n  -- This is the default if not provided, you can remove it. Or adjust as needed.\n  -- One dedicated LSP server \u0026 client will be started per unique root_dir\n  --\n  -- vim.fs.root requires Neovim 0.10.\n  -- If you're using an earlier version, use: require('jdtls.setup').find_root({'.git', 'mvnw', 'gradlew'}),\n  root_dir = vim.fs.root(0, {\".git\", \"mvnw\", \"gradlew\"}),\n\n  -- Here you can configure eclipse.jdt.ls specific settings\n  -- See https://github.com/eclipse/eclipse.jdt.ls/wiki/Running-the-JAVA-LS-server-from-the-command-line#initialize-request\n  -- for a list of options\n  settings = {\n    java = {\n    }\n  },\n\n  -- Language server `initializationOptions`\n  -- You need to extend the `bundles` with paths to jar files\n  -- if you want to use additional eclipse.jdt.ls plugins.\n  --\n  -- See https://github.com/mfussenegger/nvim-jdtls#java-debug-installation\n  --\n  -- If you don't plan on using the debugger or other eclipse.jdt.ls plugins you can remove this\n  init_options = {\n    bundles = {}\n  },\n}\n-- This starts a new client \u0026 server,\n-- or attaches to an existing client \u0026 server depending on the `root_dir`.\nrequire('jdtls').start_or_attach(config)\n```\n\nThe `ftplugin/java.lua` logic is executed each time a `FileType` event\ntriggers. This happens every time you open a `.java` file or when you invoke\n`:set ft=java`:\n\nYou can also find more [complete configuration examples in the Wiki][11].\n\nIf you have trouble getting jdtls to work, please read the\n[Troubleshooting](#troubleshooting) section.\n\n### data directory configuration\n\n`eclipse.jdt.ls` stores project specific data within the folder set via the\n`-data` flag. If you're using `eclipse.jdt.ls` with multiple different projects\nyou must use a dedicated data directory per project.\n\nAn example how you could accomplish that is to infer the workspace directory\nname from the current working directory:\n\n\n```lua\n-- If you started neovim within `~/dev/xy/project-1` this would resolve to `project-1`\nlocal project_name = vim.fn.fnamemodify(vim.fn.getcwd(), ':p:h:t')\n\nlocal workspace_dir = '/path/to/workspace-root/' .. project_name\n--                                               ^^\n--                                               string concattenation in Lua\n\nlocal config = {\n  cmd = {\n    ...,\n\n    '-data', workspace_dir,\n\n    ...,\n  }\n}\n```\n\n`...` is not valid Lua in this context. It is meant as placeholder for the\nother options from the [Configuration](#configuration) section above.)\n\n### nvim-lspconfig and nvim-jdtls differences\n\nBoth [nvim-lspconfig][9] and nvim-jdtls use the client built into neovim:\n\n```txt\n  ┌────────────┐           ┌────────────────┐\n  │ nvim-jdtls │           │ nvim-lspconfig │\n  └────────────┘           └────────────────┘\n       |                         |\n      start_or_attach           nvim_lsp.jdtls.setup\n       │                              |\n       │                             setup java filetype hook\n       │    ┌─────────┐                  │\n       └───►│ vim.lsp │◄─────────────────┘\n            └─────────┘\n                .start_client\n                .buf_attach_client\n```\n\nSome differences between the two:\n\n- The `setup` of lspconfig creates a `java` `filetype` hook itself and provides\n  some defaults for the `cmd` of the `config`.\n- `nvim-jdtls` delegates the choice when to call `start_or_attach` to the user.\n- `nvim-jdtls` adds some logic to handle `jdt://` URIs. These are necessary to\n  load source code from third party libraries or the JDK.\n- `nvim-jdtls` adds some additional handlers and sets same extra capabilities\n  to enable all the extensions.\n\nYou could use either to start the `eclipse.jdt.ls` client, but it is\nrecommended to use the `start_or_attach` method from `nvim-jdtls` because of\nthe additional capabilities it configures and because of the `jdt://` URI\nhandling.\n\nYou **must not** use both at the same time for java. You'd end up with two\nclients and two language server instances.\n\n### UI picker customization\n\n**Tip**: You can get a better UI for code-actions and other functions by\noverriding the `jdtls.ui` picker. See [UI Extensions][10].\n\n## Usage\n\n`nvim-jdtls` extends the capabilities of the built-in LSP support in\nNeovim, so all the functions mentioned in `:help lsp` will work.\n\n`nvim-jdtls` provides some extras, for those you'll want to create additional\nmappings:\n\n```vimL\nnnoremap \u003cA-o\u003e \u003cCmd\u003elua require'jdtls'.organize_imports()\u003cCR\u003e\nnnoremap crv \u003cCmd\u003elua require('jdtls').extract_variable()\u003cCR\u003e\nvnoremap crv \u003cEsc\u003e\u003cCmd\u003elua require('jdtls').extract_variable(true)\u003cCR\u003e\nnnoremap crc \u003cCmd\u003elua require('jdtls').extract_constant()\u003cCR\u003e\nvnoremap crc \u003cEsc\u003e\u003cCmd\u003elua require('jdtls').extract_constant(true)\u003cCR\u003e\nvnoremap crm \u003cEsc\u003e\u003cCmd\u003elua require('jdtls').extract_method(true)\u003cCR\u003e\n\n\n\" If using nvim-dap\n\" This requires java-debug and vscode-java-test bundles, see install steps in this README further below.\nnnoremap \u003cleader\u003edf \u003cCmd\u003elua require'jdtls'.test_class()\u003cCR\u003e\nnnoremap \u003cleader\u003edn \u003cCmd\u003elua require'jdtls'.test_nearest_method()\u003cCR\u003e\n```\n\n`nvim-jdtls` also adds several commands if the server starts up correctly:\n\n- `JdtCompile`\n- `JdtSetRuntime`\n- `JdtUpdateConfig`\n- `JdtUpdateDebugConfig` (if `dap` and java-debug bundles are available)\n- `JdtUpdateHotcode`     (if `dap` and java-debug bundles are available)\n- `JdtBytecode`\n- `JdtJol`\n- `JdtJshell`\n- `JdtRestart`\n\n\n## API Reference\n\nSee `:help jdtls`\n\n## Debugger (via nvim-dap)\n\n\n`nvim-jdtls` provides integration with [nvim-dap][5].\n\nOnce setup correctly, it enables the following additional functionality:\n\n1. Debug applications via explicit configurations\n2. Debug automatically discovered main classes\n3. Debug junit tests. Either whole classes or individual test methods\n\nFor 1 \u0026 2 to work, [eclipse.jdt.ls][3] needs to load the [java-debug][6]\nextension. For 3 to work, it also needs to load the [vscode-java-test][7] extension.\n\nFor usage instructions once installed, read the [nvim-dap][5] help.\nDebugging junit test classes or methods will be possible via these two functions:\n\n```lua\nrequire'jdtls'.test_class()\nrequire'jdtls'.test_nearest_method()\n```\n\n### java-debug installation\n\n- Clone [java-debug][6]\n- Navigate into the cloned repository (`cd java-debug`)\n- Run `./mvnw clean install`\n- Set or extend the `initializationOptions` (= `init_options` of the `config` from [configuration](#Configuration-verbose)) as follows:\n\n\n```lua\nconfig['init_options'] = {\n  bundles = {\n    vim.fn.glob(\"path/to/java-debug/com.microsoft.java.debug.plugin/target/com.microsoft.java.debug.plugin-*.jar\", 1)\n  };\n}\n```\n\n### nvim-dap setup\n\n`nvim-jdtls` will automatically register a `java` debug adapter with nvim-dap,\nif nvim-dap is available.\n\nIf you're using a plugin manager with explicit dependency manager, make sure\nthat `nvim-dap` is listed as dependency for `nvim-jdtls` for this to work.\n\n\n### nvim-dap configuration\n\n`nvim-jdtls` includes functionality to discover main classes and create `nvim-dap` configuration entries for them.\n\nTo discover the main classes you have to call `require('jdtls.dap').setup_dap_main_class_configs()` or use the `JdtUpdateDebugConfigs` command. It will only discover classes once eclipse.jdt.ls fully loaded the project. Depending on the project that may take a while. Because of that, calling `require('jdtls.dap').setup_dap_main_class_configs()` as part of an `on_attach` handler may not work well.\n\nFor manual configuration see [nvim-dap Adapter Installation Wiki](https://github.com/mfussenegger/nvim-dap/wiki/Java).\n\nTo get an overview of all available `attach` and `launch` options, take a look at [java-debug options](https://github.com/microsoft/vscode-java-debug#options). Keep in mind that any `java.debug` options are settings of the vscode-java client extension and not understood by the debug-adapter itself.\n\n### vscode-java-test installation\n\nTo be able to debug junit tests, it is necessary to install the bundles from [vscode-java-test][7]:\n\n- Clone the repository\n- Navigate into the folder (`cd vscode-java-test`)\n- Run `npm install`\n- Run `npm run build-plugin`\n- Extend the bundles in the nvim-jdtls config:\n\n\n```lua\n\n-- This bundles definition is the same as in the previous section (java-debug installation)\nlocal bundles = {\n  vim.fn.glob(\"path/to/java-debug/com.microsoft.java.debug.plugin/target/com.microsoft.java.debug.plugin-*.jar\", 1),\n};\n\n-- This is the new part\nvim.list_extend(bundles, vim.split(vim.fn.glob(\"/path/to/microsoft/vscode-java-test/server/*.jar\", 1), \"\\n\"))\nconfig['init_options'] = {\n  bundles = bundles;\n}\n```\n\n## Troubleshooting\n\n### The client exits with an error / eclipse.jdt.ls stopped working\n\nThis can have two reasons:\n\n1) Your `cmd` definition in the [Configuration](#configuration) is wrong.\n\n- Check the log files. Use `:JdtShowLogs` or open the log file manually. `:lua\n  print(vim.fn.stdpath('cache'))` lists the path, there should be a `lsp.log`.\n  You may have to increase the log level. See `:help vim.lsp.set_log_level()`.\n\n- Ensure you can start the language server standalone by invoking the `cmd`\n  defined in the configuration manually within a terminal.\n\n2) The data folder got corrupted.\n\nWipe the folder and ensure that it is in a dedicated directory and not within\nyour project repository. See [data directory\nconfiguration](#data-directory-configuration). You can use\n`:JdtWipeDataAndRestart` to do this.\n\n\n### Nothing happens when opening a Java file and I can't use any `vim.lsp.buf` functions\n\nThis can have several reasons:\n\n1) You didn't follow [Configuration](#configuration) closely and aren't\ninvoking `require('jdtls').start_or_attach(config)` as part of a `java`\n`filetype` event. Go back to the configuration section and follow it closely.\n\n2) You made a mistake in your configuration and there is a failure happening\nwhen you open the file. Try `:set ft=java` and look at the `:messages` output.\n\n3) eclipse.jdt.ls is starting but it cannot recognize your project, or it\ncannot import it properly. Try running `:JdtCompile full` or `:lua\nrequire('jdtls').compile('full')`. It should open the `quickfix` list with errors\nif eclipse.jdt.ls started but cannot handle your project.\n\nCheck the log files. Use `:JdtShowLogs` or open the log file manually. `:lua\nprint(vim.fn.stdpath('cache'))` lists the path, there should be a `lsp.log`.\nYou may have to increase the log level. See `:help vim.lsp.set_log_level()`.\n\n\n### Error: Unable to access jarfile\n\nEither the file doesn't exist or you're using `~` characters in your path.\nNeovim doesn't automatically expand `~` characters in the `cmd` definition. You\neither need to write them out or wrap the fragments in `vim.fn.expand` calls.\n\n### Unrecognized option: --add-modules=ALL-SYSTEM\n\nEclipse.jdt.ls requires at least Java 21. You're using a lower version.\n\n### is a non-project file, only syntax errors are reported\n\nYou're opening a single file without having a Gradle or Maven project.\nYou need to use Gradle or Maven for the full functionality.\n\n### Java XY language features are not available\n\nYou need to set the language level via the Gradle or Maven configuration.\n\nIf you're starting eclipse.jdt.ls with a Java version that's different from the\none the project uses, you need to configure the available Java runtimes. Add\nthem to the `config` from the [configuration section](#configuration):\n\n```lua\nlocal config = {\n  ..., -- not valid Lua, this is a placeholder for your other properties.\n  settings = {\n    java = {\n      configuration = {\n        -- See https://github.com/eclipse/eclipse.jdt.ls/wiki/Running-the-JAVA-LS-server-from-the-command-line#initialize-request\n        -- And search for `interface RuntimeOption`\n        -- The `name` is NOT arbitrary, but must match one of the elements from `enum ExecutionEnvironment` in the link above\n        runtimes = {\n          {\n            name = \"JavaSE-11\",\n            path = \"/usr/lib/jvm/java-11-openjdk/\",\n          },\n          {\n            name = \"JavaSE-17\",\n            path = \"/usr/lib/jvm/java-17-openjdk/\",\n          },\n        }\n      }\n    }\n  }\n}\n```\n\nYou can also change the language level at runtime using the `:JdtSetRuntime`\ncommand.\n\n\n### Diagnostics and completion suggestions are slow\n\nCompletion requests can be quite expensive on big projects. If you're using\nsome kind of auto-completion plugin that triggers completion requests\nautomatically, consider deactivating it or tuning it so it is less aggressive.\nTriggering a completion request on each typed character is likely overloading\n[eclipse.jdt.ls][3].\n\n\n### Newly added dependencies are not found\n\nYou can try running `:JdtUpdateConfig` to refresh the configuration. If that\ndoesn't work you'll need to restart the language server.\n\n### Language server doesn't find classes that should be there\n\nThe language server supports [gradle](https://gradle.org/) and\n[maven](https://maven.apache.org/ref/3.8.4/) as build tools. Your project\nshould either have a `pom.xml` or `settings.gradle` and `build.gradle` file to\ndeclare the dependencies.\n\nAs an alternative you could manually specify the dependencies within your\nnvim-jdtls configuration like the following, but this is not recommended.\n\n```lua\nconfig.settings = {\n    java = {\n      project = {\n        referencedLibraries = {\n          '/path/to/dependencyA.jar',\n          '/path/to/dependencyB.jar',\n        },\n      }\n    }\n  }\n```\n\nIf you modify files outside of Neovim (for example with a git checkout), the\nlanguage client and language server may not detect these changes and the state\nof the file on disk diverges with the mental model of the language server. If\nthat happens, you need to open all changed files within Neovim and reload them\nwith `:e!` to synchronize the state.\n\n### Indentation settings from eclipse formatting configuration are not recognized\n\nThis is expected. The Neovim `shiftwidth` and `tabstop` settings have a higher\npriority.\n\n\n[1]: https://microsoft.github.io/language-server-protocol/\n[2]: https://neovim.io/\n[3]: https://github.com/eclipse/eclipse.jdt.ls\n[5]: https://github.com/mfussenegger/nvim-dap\n[6]: https://github.com/microsoft/java-debug\n[7]: https://github.com/microsoft/vscode-java-test\n[9]: https://github.com/neovim/nvim-lspconfig\n[10]: https://github.com/mfussenegger/nvim-jdtls/wiki/UI-Extensions\n[11]: https://github.com/mfussenegger/nvim-jdtls/wiki/Sample-Configurations\n[14]: https://github.com/junegunn/vim-plug\n[15]: https://github.com/wbthomason/packer.nvim\n[kiss]: https://en.wikipedia.org/wiki/KISS_principle\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmfussenegger%2Fnvim-jdtls","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmfussenegger%2Fnvim-jdtls","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmfussenegger%2Fnvim-jdtls/lists"}