diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index e819068..b8c5e4d 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -77,7 +77,12 @@ return { -- Set icons to characters that are more likely to work in every terminal. -- Feel free to remove or use ones that you like more! :) -- Don't feel like these are good choices. - icons = { expanded = '▾', collapsed = '▸', current_frame = '*' }, + icons = { + expanded = '▾', + collapsed = '▸', + current_frame = '*', + }, + controls = { icons = { pause = '⏸', @@ -93,6 +98,12 @@ return { }, } + vim.fn.sign_define('DapBreakpoint', { text = '🔴', texthl = '', linehl = '', numhl = '' }) + vim.fn.sign_define('DapBreakpointCondition', { text = '🟠', texthl = '', linehl = '', numhl = '' }) + vim.fn.sign_define('DapBreakpointRejected', { text = '⚪', texthl = '', linehl = '', numhl = '' }) + vim.fn.sign_define('DapLogPoint', { text = '🔵', texthl = '', linehl = '', numhl = '' }) + vim.fn.sign_define('DapStopped', { text = '👉', texthl = '', linehl = '', numhl = '' }) + dap.listeners.after.event_initialized['dapui_config'] = dapui.open -- dap.listeners.before.event_terminated['dapui_config'] = dapui.close -- dap.listeners.before.event_exited['dapui_config'] = dapui.close