NvChad / base46

NvChad's base46 theme plugin with caching ( Total re-write )
Other
209 stars 204 forks source link

Update dap.lua #320

Open WayneYam opened 4 months ago

WayneYam commented 4 months ago

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=''})