update config

This commit is contained in:
asep komarudin 2023-02-15 09:07:41 +07:00
parent d71520224d
commit 256d7305e8

View file

@ -1,6 +1,7 @@
local dap, dapui = require("dap"), require("dapui")
dap.listeners.after.event_initialized["dapui_config"] = function()
dapui.setup()
dapui.open()
end
dap.listeners.before.event_terminated["dapui_config"] = function()
@ -9,6 +10,5 @@ end
dap.listeners.before.event_exited["dapui_config"] = function()
dapui.close()
end
dapui.setup()
vim.fn.sign_define("DapBreakpoint", { text = "🟥", texthl = "", linehl = "", numhl = "" })
vim.fn.sign_define("DapStopped", { text = "▶️", texthl = "", linehl = "", numhl = "" })