From 930ee200607169a54419d81c9dbee43366495202 Mon Sep 17 00:00:00 2001 From: Bruno Krugel Date: Sun, 20 Aug 2023 00:06:43 -0300 Subject: [PATCH] Add DapUI buttons (#232) --- lua/base46/extended_integrations/dap.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lua/base46/extended_integrations/dap.lua b/lua/base46/extended_integrations/dap.lua index 6dda8fc..625d50f 100644 --- a/lua/base46/extended_integrations/dap.lua +++ b/lua/base46/extended_integrations/dap.lua @@ -30,11 +30,19 @@ return { DapUIBreakpointsDisabledLine = { fg = colors.grey_fg2 }, DapUIStepOver = { fg = colors.blue }, + DapUIStepOverNC = { fg = colors.blue }, DapUIStepInto = { fg = colors.blue }, + DapUIStepIntoNC = { fg = colors.blue }, DapUIStepBack = { fg = colors.blue }, + DapUIStepBackNC = { fg = colors.blue }, DapUIStepOut = { fg = colors.blue }, + DapUIStepOutNC = { fg = colors.blue }, DapUIStop = { fg = colors.red }, + DapUIStopNC = { fg = colors.red }, DapUIPlayPause = { fg = colors.green }, + DapUIPlayPauseNC = { fg = colors.green }, DapUIRestart = { fg = colors.green }, + DapUIRestartNC = { fg = colors.green }, DapUIUnavailable = { fg = colors.grey_fg }, + DapUIUnavailableNC = { fg = colors.grey_fg }, }