mirror of
https://github.com/catppuccin/nvim.git
synced 2026-01-09 07:53:46 +08:00
chore: fix formatting (#967)
This commit is contained in:
parent
4420f0a50d
commit
beaf41a30c
@ -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,
|
||||
|
||||
@ -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 }
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user