chore: save config
This commit is contained in:
parent
1b26f91faa
commit
dc228a038b
16 changed files with 779 additions and 91 deletions
15
lua/custom/plugins/springboot.lua.skip
Normal file
15
lua/custom/plugins/springboot.lua.skip
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
return {
|
||||
"elmcgill/springboot-nvim",
|
||||
depedencies = {
|
||||
"neovim/nvim-lspconfig",
|
||||
"mfussenegger/nvim-jdtls"
|
||||
},
|
||||
config = function()
|
||||
local springboot_nvim = require("springboot-nvim")
|
||||
vim.keymap.set('n', '<leader>Jr', springboot_nvim.boot_run, { desc = "Spring Boot Run Project" })
|
||||
vim.keymap.set('n', '<leader>Jc', springboot_nvim.generate_class, { desc = "Java Create Class" })
|
||||
vim.keymap.set('n', '<leader>Ji', springboot_nvim.generate_interface, { desc = "Java Create Interface" })
|
||||
vim.keymap.set('n', '<leader>Je', springboot_nvim.generate_enum, { desc = "Java Create Enum" })
|
||||
springboot_nvim.setup({})
|
||||
end
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue