This is a necessary change to ensure they are loaded before any other plugins. Prevents a warning message at startup.
22 lines
866 B
Lua
22 lines
866 B
Lua
--- @module "plugins.debug"
|
|
--- This module defines the debug plugins spec for the Neovim configuration.
|
|
-- ╭─────────────────────────────────────────────────────────╮
|
|
-- │ Debug │
|
|
-- ╰─────────────────────────────────────────────────────────╯
|
|
|
|
return {
|
|
{ -- 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',
|
|
},
|
|
}
|