i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Automatically open and close dap-ui when debugging

+15
+15
nvim/.config/nvim/lua/plugins.lua
··· 628 628 end, 629 629 }, 630 630 }, 631 + config = function() 632 + local dap, dapui = require("dap"), require("dapui") 633 + 634 + dap.listeners.after.event_initialized["dapui_config"] = function() 635 + dapui.open({}) 636 + end 637 + 638 + dap.listeners.before.event_terminated["dapui_config"] = function() 639 + dapui.close({}) 640 + end 641 + 642 + dap.listeners.before.event_exited["dapui_config"] = function() 643 + dapui.close({}) 644 + end 645 + end, 631 646 }, 632 647 })