chore: fix formatting (#967)

This commit is contained in:
robin 2026-01-08 16:35:06 +01:00 committed by GitHub
parent 4420f0a50d
commit beaf41a30c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 3 deletions

View File

@ -49,7 +49,10 @@ function M.get()
bg = C.lavender,
} or { fg = C.subtext0, bg = (O.float.transparent and vim.o.winblend == 0) and C.none or C.mantle }, -- Title of floating windows
FloatShadow = { bg = (O.float.transparent and vim.o.winblend == 0) and C.none or C.overlay0, blend = 80 },
FloatShadowThrough = { bg = (O.float.transparent and vim.o.winblend == 0) and C.none or C.overlay0, blend = 100 },
FloatShadowThrough = {
bg = (O.float.transparent and vim.o.winblend == 0) and C.none or C.overlay0,
blend = 100,
},
Pmenu = {
bg = (O.transparent_background and vim.o.pumblend == 0) and C.none or C.mantle,
fg = C.overlay2,

View File

@ -295,8 +295,8 @@
---@alias CtpIntegrationLualine CtpFlavors<CtpIntegrationLualineOverride | CtpIntegrationLualineOverrideFn>
---@alias CtpIntegrationLualineOverride CtpIntegrationLualineModes<CtpIntegrationLualineSectionOverrides>
---@alias CtpIntegrationLualineOverrideFn fun(colors: CtpColors<string>): CtpIntegrationLualineOverride
---@alias CtpIntegrationLualineMode "normal" | "insert" | "visual" | "replace" | "command" | "terminal" | "inactive"
---@class CtpIntegrationLualineModes<T>: { all: T, normal: T, insert: T, visual: T, replace: T, command: T, terminal: T, inactive: T }
---@alias CtpIntegrationLualineMode "normal" | "insert" | "visual" | "replace" | "command" | "terminal" | "inactive"
---@class CtpIntegrationLualineModes<T>: { all: T, normal: T, insert: T, visual: T, replace: T, command: T, terminal: T, inactive: T }
---@alias CtpIntegrationLualineSectionOverrides CtpIntegrationLualineSections<CtpIntegrationLualineSectionOverride>
---@alias CtpIntegrationLualineSection "a" | "b" | "c"
---@class CtpIntegrationLualineSections<T>: { a: T, b: T, c: T }