mirror of https://github.com/sgoudham/nvim.git
feat(integration): Add integration
parent
93d95b2040
commit
42f3dd183f
@ -0,0 +1,34 @@
|
||||
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
|
Loading…
Reference in New Issue