diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-01-30 13:12:52 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-01-30 13:12:52 +0100 |
commit | dae9bbb61223218d0043baffb3ede4cee9568872 (patch) | |
tree | 2b83a7eec58f868a74d39055f68013ea900a3518 /lua/no-clown-fiesta/groups/dapui.lua | |
parent | e35c7f984bb278024bc81c6a2fd5fe16a463cab1 (diff) | |
parent | ecf3e186d336e03b5ce7ed4e8f7f72ad983947df (diff) |
Merge branch 'master' of github.com:aktersnurra/no-clown-fiesta.nvim
Diffstat (limited to 'lua/no-clown-fiesta/groups/dapui.lua')
-rw-r--r-- | lua/no-clown-fiesta/groups/dapui.lua | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/groups/dapui.lua b/lua/no-clown-fiesta/groups/dapui.lua new file mode 100644 index 0000000..188e97d --- /dev/null +++ b/lua/no-clown-fiesta/groups/dapui.lua @@ -0,0 +1,35 @@ +local M = {} + +function M.highlight(palette, opts) + return { + DapUIScope = { fg = palette.cyan }, + DapUIType = { fg = palette.magenta }, + DapUIModifiedValue = { fg = palette.cyan, bold = true }, + DapUIDecoration = { link = 'DapUIScope' }, + DapUIThread = { fg = palette.green, bold = true }, + DapUIStoppedThread = { link = 'DapUIScope' }, + DapUISource = { link = 'DapUIType' }, + DapUILineNumber = { link = 'DapUIScope' }, + DapUIFloatBorder = { link = 'DapUIScope' }, + DapUIWatchesEmpty = { fg = palette.red }, + DapUIWatchesValue = { fg = palette.green }, + DapUIWatchesError = { link = 'DapUIWatchesEmpty' }, + DapUIBreakpointsPath = { link = 'DapUIScope' }, + DapUIBreakpointsInfo = { link = 'DapUIWatchesValue' }, + DapUIBreakpointsCurrentLine = { link = 'DapUIThread' }, + DapUIBreakpointsDisabledLine = { fg = palette.fg }, + DapUIStepOver = { link = 'DapUIScope' }, + DapUIStepInto = { link = 'DapUIScope' }, + DapUIStepBack = { link = 'DapUIScope' }, + DapUIStepOut = { link = 'DapUIScope' }, + DapUIStop = { link = 'DapUIWatchesEmpty' }, + DapUIPlayPause = { link = 'DapUIWatchesValue' }, + DapUIRestart = { link = 'DapUIWatchesValue' }, + DapUIUnavailable = { link = 'DapUIBreakpointsDisabledLine' }, + DapUIWinSelect = { link = 'DapUIModifiedValue' }, + } +end + +return M + + |