nvim: add dapui gruvbox colors
This commit is contained in:
parent
d2716e296a
commit
0365ea2be6
1 changed files with 33 additions and 0 deletions
|
@ -188,6 +188,39 @@ function M.config()
|
||||||
|
|
||||||
-- gr:hl('GitSignsAddLine', nil, 'faded_green', {})
|
-- gr:hl('GitSignsAddLine', nil, 'faded_green', {})
|
||||||
-- vim.fn.sign_define('GitSignsAdd', { text = '│', texthl = 'GitSignsAdd', linehl = 'GitSignsAddLine', culhl='CursorLine' })
|
-- vim.fn.sign_define('GitSignsAdd', { text = '│', texthl = 'GitSignsAdd', linehl = 'GitSignsAddLine', culhl='CursorLine' })
|
||||||
|
link('DapUINormal', 'Normal')
|
||||||
|
link('DapUIVariable', 'Identifier')
|
||||||
|
link('DapUIScope', 'GruvboxAqua')
|
||||||
|
link('DapUIType', 'Type')
|
||||||
|
link('DapUIValue', 'GruvboxFg1')
|
||||||
|
link('DapUIModifiedValue', 'GruvboxAquaBold')
|
||||||
|
link('DapUIDecoration', 'GruvboxAqua')
|
||||||
|
link('DapUIThread', 'GruvboxGreen')
|
||||||
|
link('DapUIStoppedThread', 'GruvboxAqua')
|
||||||
|
link('DapUIFrameName', 'GruvboxFg1')
|
||||||
|
link('DapUISource', 'GruvboxPurple')
|
||||||
|
link('DapUILineNumber', 'GruvboxAqua')
|
||||||
|
link('DapUIFloatNormal', 'NormalFloat')
|
||||||
|
link('DapUIFloatBorder', 'GruvboxAqua')
|
||||||
|
link('DapUIWatchesEmpty', 'GruvboxRed')
|
||||||
|
link('DapUIWatchesValue', 'GruvboxGreen')
|
||||||
|
link('DapUIWatchesError', 'GruvboxRed')
|
||||||
|
link('DapUIBreakpointsPath', 'GruvboxAqua')
|
||||||
|
link('DapUIBreakpointsInfo', 'GruvboxGreen')
|
||||||
|
link('DapUIBreakpointsCurrentLine', 'GruvboxGreenBold')
|
||||||
|
link('DapUIBreakpointsLine', 'DapUILineNumber')
|
||||||
|
link('DapUIBreakpointsDisabledLine', 'Comment')
|
||||||
|
link('DapUICurrentFrameName', 'DapUIBreakpointsCurrentLine')
|
||||||
|
link('DapUIStepOver', 'GruvboxAqua')
|
||||||
|
link('DapUIStepInto', 'GruvboxAqua')
|
||||||
|
link('DapUIStepBack', 'GruvboxAqua')
|
||||||
|
link('DapUIStepOut', 'GruvboxAqua')
|
||||||
|
link('DapUIStop', 'GruvboxRed')
|
||||||
|
link('DapUIPlayPause', 'GruvboxGreen')
|
||||||
|
link('DapUIRestart', 'GruvboxGreen')
|
||||||
|
link('DapUIUnavailable', 'Comment')
|
||||||
|
link('DapUIWinSelect', 'GruvboxAquaBold')
|
||||||
|
link('DapUIEndofBuffer', 'EndofBuffer')
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue