- Add nvim-jdtls for Java LSP with Maven/Gradle project detection
- Create ftplugin/java.lua for automatic jdtls startup and keymaps
- Enable nvim-dap with java-debug-adapter for breakpoint debugging
- Add neotest with neotest-java adapter for JUnit 5 test runner
- Add NeotestJavaDownload command for JUnit jar setup on Neovim < 0.12
- Configure google-java-format via conform.nvim
- Add java treesitter parser and <leader>j which-key group
- Mason auto-installs jdtls, java-debug-adapter, java-test, google-java-format
* Fix nvim-dap not lazy loading
The keys property had local variables 'dap' and 'dap-ui' that used `require` and prevented all DAP related plugins from lazy-loading.
Fixed this by changing keys to a table and substituting the local variables with a lamba function
* Make debug keybind descriptions more consistent
* feat: Set breakpoint icons and their highlight colors
* docs: Delete reference URL (written in PR)
feat: "Break" and "Stop" arguments of vim.api.nvim_set_hl are changed because they are too common nouns
feat: Comment out changes regarding diagnostic symbols so that only those who want to change them can do so
---------
Co-authored-by: name <email>
Add descriptions for debugging key bindings.
Improve formatting by changing double quotes to single quotes in order
to keep compatibility with the rest of the kickstart.nvim project.