Skip to content

Commit

Permalink
fix(nvim): add missing dependency for dap-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
spywhere committed Apr 19, 2024
1 parent 4cbe27b commit c09e150
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion configs/nvim/lua/plugin/debugging/dapui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ local registry = require('lib.registry')

registry.install {
'rcarriga/nvim-dap-ui',
requires = 'mfussenegger/nvim-dap',
requires = {
'mfussenegger/nvim-dap',
'nvim-neotest/nvim-nio'
},
delay = function ()
local dap = require('dap')
local dapui = require('dapui')
Expand Down

0 comments on commit c09e150

Please sign in to comment.