Nigel Barink
040375e338
Paths are setup for my main Windows machine Linux can be defined when necessary
29 lines
711 B
Lua
29 lines
711 B
Lua
return {
|
|
{
|
|
'mfussenegger/nvim-dap',
|
|
dependencies = {
|
|
{
|
|
'rcarriga/nvim-dap-ui',
|
|
dependencies = {
|
|
'mfussenegger/nvim-dap',
|
|
'nvim-neotest/nvim-nio',
|
|
},
|
|
config = function ()
|
|
require("dapui").setup()
|
|
end
|
|
},
|
|
},
|
|
config = function ()
|
|
local dap = require('dap')
|
|
dap.configurations.java = {
|
|
{
|
|
type = 'java';
|
|
request = 'launch';
|
|
name = "Launch file";
|
|
program = "java ${file}";
|
|
},
|
|
}
|
|
end
|
|
}
|
|
}
|