Files
neovim-config/lua/plugins/debug.lua
T
rootiest 273580f533 ♻️ refactor(full-scope)!: major revision refactoring
Code layout has been changed and improoved. Annotations are added for documentation. Automated through utility functions and data tables

BREAKING CHANGE: Tested from clean. Now properly uses LuaRocks to install dependencies.
2024-09-04 16:07:12 -04:00

32 lines
1.1 KiB
Lua

--- @module "plugins.debug"
--- This module defines the debug plugins spec for the Neovim configuration.
-- ╭─────────────────────────────────────────────────────────╮
-- │ Debug │
-- ╰─────────────────────────────────────────────────────────╯
local data = require("data")
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 = data.deps.neotest.adapters,
},
dependencies = data.deps.neotest.deps,
},
{ -- Profiling
"stevearc/profile.nvim",
},
}