base46
base46 copied to clipboard
Update dap.lua
Made the highlighting better
Note that, due to the fact that all breakpoint signs uses the "SignColumn" highlight group, the following is needed in config to have the breakpoint highlighting functional.
vim.fn.sign_define('DapBreakpoint', {text='B', texthl='DapBreakpoint', linehl='', numhl=''})
vim.fn.sign_define('DapBreakpointCondition', {text='C', texthl='DapBreakpointCondition', linehl='', numhl=''})
vim.fn.sign_define('DapBreakpointRejected', {text='R', texthl='DapBreakpointRejected', linehl='', numhl=''})
vim.fn.sign_define('DapLogPoint', {text='L', texthl='DapLogPoint', linehl='', numhl=''})
vim.fn.sign_define('DapStopped', {text='→', texthl='DapStopped', linehl='', numhl=''})