Files
neovim-config/lua/plugins/debug.lua
T
rootiest 816eca31b7 fix!: move all lazyvim extras into a single file
This is a necessary change to ensure they are loaded before any other
plugins.
Prevents a warning message at startup.
2025-02-08 20:28:57 -05:00

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',
},
}