This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local M = {} | |
| local states = {} | |
| local build_timers = {} | |
| local mapstruct_cache = {} | |
| local command_group = vim.api.nvim_create_augroup("shadow-java", { clear = true }) | |
| local buffer_group = vim.api.nvim_create_augroup("shadow-java-buffer", { clear = true }) | |
| local float = { | |
| width = 0.82, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return { | |
| { | |
| "nvim-java/nvim-java", | |
| ft = "java", | |
| dependencies = { | |
| "neovim/nvim-lspconfig", | |
| "MunifTanjim/nui.nvim", | |
| "mfussenegger/nvim-dap", | |
| { | |
| "JavaHello/spring-boot.nvim", |