31 lines
1.1 KiB
Lua
31 lines
1.1 KiB
Lua
--- @module "plugins.debug"
|
|
--- This module defines the debug plugins spec for the Neovim configuration.
|
|
-- ╭─────────────────────────────────────────────────────────╮
|
|
-- │ Debug │
|
|
-- ╰─────────────────────────────────────────────────────────╯
|
|
|
|
return {
|
|
{ -- DAP Core
|
|
import = 'lazyvim.plugins.extras.dap.core',
|
|
},
|
|
{ -- DAP Neovim Lua Adapter
|
|
import = 'lazyvim.plugins.extras.dap.nlua',
|
|
},
|
|
{ -- NeoTest
|
|
import = 'lazyvim.plugins.extras.test.core',
|
|
},
|
|
{ -- Neotest Plenary
|
|
'nvim-neotest/neotest-plenary',
|
|
},
|
|
{ -- Neotest
|
|
'nvim-neotest/neotest',
|
|
opts = {
|
|
adapters = require('data.deps').neotest.adapters,
|
|
},
|
|
dependencies = require('data.deps').neotest.deps,
|
|
},
|
|
{ -- Profiling
|
|
'stevearc/profile.nvim',
|
|
},
|
|
}
|