feat: Set breakpoint icons and their highlight colors

This commit is contained in:
name 2024-10-18 12:52:43 +09:00
parent 4120893b8a
commit f1154553d1
1 changed files with 13 additions and 0 deletions

View File

@ -89,6 +89,19 @@ return {
},
}
-- Change breakpoint icons
-- For more information, see https://github.com/mfussenegger/nvim-dap/discussions/355
vim.api.nvim_set_hl(0, 'Break', { fg = '#e51400' })
vim.api.nvim_set_hl(0, 'Stop', { fg = '#ffcc00' })
local breakpoint_icons = vim.g.have_nerd_font
and { Breakpoint = '', BreakpointCondition = '', BreakpointRejected = '', LogPoint = '', Stopped = '' }
or { Breakpoint = '', BreakpointCondition = '', BreakpointRejected = '', LogPoint = '', Stopped = '' }
for type, icon in pairs(breakpoint_icons) do
local tp = 'Dap' .. type
local hl = (type == 'Stopped') and 'Stop' or 'Break'
vim.fn.sign_define(tp, { text = icon, texthl = hl, numhl = hl })
end
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