return { "rcarriga/nvim-dap-ui", dependencies = { "mfussenegger/nvim-dap" }, keys = { { "", "lua require'dap'.toggle_breakpoint()", desc = "toggle_breakpoint" }, }, config = function() require("dapui").setup() local sign = vim.fn.sign_define sign("DapBreakpoint", { text = "●", texthl = "DapBreakpoint", linehl = "", numhl = "" }) sign("DapBreakpointCondition", { text = "●", texthl = "DapBreakpointCondition", linehl = "", numhl = "" }) sign("DapLogPoint", { text = "◆", texthl = "DapLogPoint", linehl = "", numhl = "" }) end, }