mirror of
https://github.com/gabehf/base46.git
synced 2026-03-13 09:20:31 -07:00
Add integration for dap and dapui (#181)
* Add integration for dap and dapui * Update dap.lua
This commit is contained in:
parent
901ffef32d
commit
949f09cc09
1 changed files with 40 additions and 0 deletions
40
lua/base46/extended_integrations/dap.lua
Normal file
40
lua/base46/extended_integrations/dap.lua
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
local colors = require("base46").get_theme_tb "base30"
|
||||||
|
|
||||||
|
return {
|
||||||
|
-- Dap
|
||||||
|
DapBreakpoint = { fg = colors.red },
|
||||||
|
DapBreakpointCondition = { fg = colors.yellow },
|
||||||
|
DapLogPoint = { fg = colors.cyan },
|
||||||
|
DapStopped = { fg = colors.baby_pink },
|
||||||
|
|
||||||
|
-- DapUI
|
||||||
|
DAPUIScope = { fg = colors.cyan },
|
||||||
|
DAPUIType = { fg = colors.dark_purple },
|
||||||
|
DAPUIValue = { fg = colors.cyan },
|
||||||
|
DAPUIVariable = { fg = colors.white },
|
||||||
|
DapUIModifiedValue = { fg = colors.orange },
|
||||||
|
DapUIDecoration = { fg = colors.cyan },
|
||||||
|
DapUIThread = { fg = colors.green },
|
||||||
|
DapUIStoppedThread = { fg = colors.cyan },
|
||||||
|
DapUISource = { fg = colors.lavender },
|
||||||
|
DapUILineNumber = { fg = colors.cyan },
|
||||||
|
DapUIFloatBorder = { fg = colors.cyan },
|
||||||
|
|
||||||
|
DapUIWatchesEmpty = { fg = colors.baby_pink },
|
||||||
|
DapUIWatchesValue = { fg = colors.green },
|
||||||
|
DapUIWatchesError = { fg = colors.baby_pink },
|
||||||
|
|
||||||
|
DapUIBreakpointsPath = { fg = colors.cyan },
|
||||||
|
DapUIBreakpointsInfo = { fg = colors.green },
|
||||||
|
DapUIBreakPointsCurrentLine = { fg = colors.green, bold = true },
|
||||||
|
DapUIBreakpointsDisabledLine = { fg = colors.grey_fg2 },
|
||||||
|
|
||||||
|
DapUIStepOver = { fg = colors.blue },
|
||||||
|
DapUIStepInto = { fg = colors.blue },
|
||||||
|
DapUIStepBack = { fg = colors.blue },
|
||||||
|
DapUIStepOut = { fg = colors.blue },
|
||||||
|
DapUIStop = { fg = colors.red },
|
||||||
|
DapUIPlayPause = { fg = colors.green },
|
||||||
|
DapUIRestart = { fg = colors.green },
|
||||||
|
DapUIUnavailable = { fg = colors.grey_fg },
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue