mirror of https://github.com/sgoudham/nvim.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
941 B
Lua
35 lines
941 B
Lua
2 years ago
|
local M = {}
|
||
|
|
||
|
function M.get()
|
||
|
return {
|
||
|
-- nvim-dap
|
||
|
DapBreakpoint = { fg = cp.red },
|
||
|
DapBreakpointCondition = { fg = cp.yellow },
|
||
|
DapLogPoint = { fg = cp.sky },
|
||
|
|
||
|
-- nvim-dap-ui
|
||
|
DAPUIScope = { fg = cp.sky },
|
||
|
DAPUIType = { fg = cp.mauve },
|
||
|
DAPUIValue = { fg = cp.sky },
|
||
|
DAPUIVariable = { fg = cp.text },
|
||
|
DapUIModifiedValue = { fg = cp.peach },
|
||
|
DapUIDecoration = { fg = cp.sky },
|
||
|
DapUIThread = { fg = cp.green },
|
||
|
DapUIStoppedThread = { fg = cp.sky },
|
||
|
DapUISource = { fg = cp.lavender },
|
||
|
DapUILineNumber = { fg = cp.sky },
|
||
|
DapUIFloatBorder = { fg = cp.sky },
|
||
|
|
||
|
DapUIWatchesEmpty = { fg = cp.maroon },
|
||
|
DapUIWatchesValue = { fg = cp.green },
|
||
|
DapUIWatchesError = { fg = cp.maroon },
|
||
|
|
||
|
DapUIBreakpointsPath = { fg = cp.sky },
|
||
|
DapUIBreakpointsInfo = { fg = cp.green },
|
||
|
DapUIBreakpointsCurrentLine = { fg = cp.green, style = { "bold" } },
|
||
|
DapUIBreakpointsDisabledLine = { fg = cp.gray0 },
|
||
|
}
|
||
|
end
|
||
|
|
||
|
return M
|