summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-02-21 00:52:42 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-02-21 00:52:42 +0100
commitc3fd698b6e8f3ed134471520c4f0c12a1e3cb7e9 (patch)
tree8d50fcef59a3d8a09a51874a5533f61eb7015acb
parent1940861742140c96cc4cc19067dada5a3652c990 (diff)
Format
-rw-r--r--lua/no-clown-fiesta/groups/dapui.lua50
-rw-r--r--lua/no-clown-fiesta/groups/git.lua2
-rw-r--r--lua/no-clown-fiesta/groups/leap.lua12
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