diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-02-21 00:52:42 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-02-21 00:52:42 +0100 |
commit | c3fd698b6e8f3ed134471520c4f0c12a1e3cb7e9 (patch) | |
tree | 8d50fcef59a3d8a09a51874a5533f61eb7015acb /lua/no-clown-fiesta/groups | |
parent | 1940861742140c96cc4cc19067dada5a3652c990 (diff) |
Format
Diffstat (limited to 'lua/no-clown-fiesta/groups')
-rw-r--r-- | lua/no-clown-fiesta/groups/dapui.lua | 50 | ||||
-rw-r--r-- | lua/no-clown-fiesta/groups/git.lua | 2 | ||||
-rw-r--r-- | lua/no-clown-fiesta/groups/leap.lua | 12 |
3 files changed, 31 insertions, 33 deletions
diff --git a/lua/no-clown-fiesta/groups/dapui.lua b/lua/no-clown-fiesta/groups/dapui.lua index 188e97d..4a89777 100644 --- a/lua/no-clown-fiesta/groups/dapui.lua +++ b/lua/no-clown-fiesta/groups/dapui.lua @@ -2,34 +2,32 @@ 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' }, + 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' }, + 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 - - diff --git a/lua/no-clown-fiesta/groups/git.lua b/lua/no-clown-fiesta/groups/git.lua index 856147c..bbd1f84 100644 --- a/lua/no-clown-fiesta/groups/git.lua +++ b/lua/no-clown-fiesta/groups/git.lua @@ -8,7 +8,7 @@ function M.highlight(palette, opts) GitSignsAdd = { fg = palette.sign_add }, GitSignsChange = { fg = palette.sign_change }, GitSignsDelete = { fg = palette.sign_delete }, - GitSignsCurrentLineBlame = { fg = palette.gray } + GitSignsCurrentLineBlame = { fg = palette.gray }, } end diff --git a/lua/no-clown-fiesta/groups/leap.lua b/lua/no-clown-fiesta/groups/leap.lua index 5dfd394..009e9bb 100644 --- a/lua/no-clown-fiesta/groups/leap.lua +++ b/lua/no-clown-fiesta/groups/leap.lua @@ -1,12 +1,12 @@ local M = {} function M.highlight(palette, opts) - return { - LeapMatch = { fg = palette.cyan, bold = true }, - LeapLabelPrimary = { fg = palette.red, bold = true }, - LeapLabelSecondary = { fg = palette.gray_blue }, - LeapBackdrop = { fg = palette.gray }, - } + return { + LeapMatch = { fg = palette.cyan, bold = true }, + LeapLabelPrimary = { fg = palette.red, bold = true }, + LeapLabelSecondary = { fg = palette.gray_blue }, + LeapBackdrop = { fg = palette.gray }, + } end return M |