refactor: consolidate plugin dependencies into a central data source

This commit is contained in:
2024-08-31 03:01:13 -04:00
parent ce3f339757
commit 0fcb172fcc
10 changed files with 79 additions and 209 deletions
+4 -15
View File
@@ -1,6 +1,8 @@
-- ╭─────────────────────────────────────────────────────────╮
-- │ Debug │
-- ╰─────────────────────────────────────────────────────────╯
local data = require("data")
return {
{ -- DAP Core
import = "lazyvim.plugins.extras.dap.core",
@@ -15,22 +17,9 @@ return {
{
"nvim-neotest/neotest",
opts = {
adapters = {
"neotest-plenary",
"neotest-python",
"neotest-vim-test",
"neotest-minitest",
"neotest-bash",
},
},
dependencies = {
"nvim-neotest/nvim-nio",
"nvim-lua/plenary.nvim",
"zidhuss/neotest-minitest",
"rcasia/neotest-bash",
"antoinemadec/FixCursorHold.nvim",
"nvim-treesitter/nvim-treesitter",
adapters = data.deps.neotest.adapters,
},
dependencies = data.deps.neotest.deps,
},
{ -- Profiling
"stevearc/profile.nvim",