mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-25 06:38:34 +02:00
add vim-fugitive
This commit is contained in:
parent
5636d0e913
commit
044d74b814
10 changed files with 392 additions and 16 deletions
28
lua/custom/plugins/neotest-java.lua
Normal file
28
lua/custom/plugins/neotest-java.lua
Normal file
|
@ -0,0 +1,28 @@
|
|||
return {
|
||||
{
|
||||
'rcasia/neotest-java',
|
||||
ft = 'java',
|
||||
dependencies = {
|
||||
'mfussenegger/nvim-jdtls',
|
||||
'mfussenegger/nvim-dap', -- for the debugger
|
||||
'rcarriga/nvim-dap-ui', -- recommended
|
||||
'theHamsta/nvim-dap-virtual-text', -- recommended
|
||||
},
|
||||
},
|
||||
{
|
||||
'nvim-neotest/neotest',
|
||||
dependencies = {
|
||||
'rcasia/neotest-java',
|
||||
'nvim-neotest/nvim-nio',
|
||||
'nvim-lua/plenary.nvim',
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
},
|
||||
init = function()
|
||||
require('neotest').setup {
|
||||
adapters = {
|
||||
require 'neotest-java' {},
|
||||
},
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue