fix: statusline

dev-remaster
Pocco81 3 years ago
parent 4632b8b9a7
commit 2889b47290

@ -9,18 +9,18 @@ function M.get(cp)
BufferCurrentMod = { bg = cp.catppuccino13, fg = cp.warning }, BufferCurrentMod = { bg = cp.catppuccino13, fg = cp.warning },
BufferCurrentSign = { bg = cp.catppuccino13, fg = cp.info }, BufferCurrentSign = { bg = cp.catppuccino13, fg = cp.info },
BufferCurrentTarget = { bg = cp.catppuccino13, fg = cp.catppuccino6 }, BufferCurrentTarget = { bg = cp.catppuccino13, fg = cp.catppuccino6 },
BufferVisible = { bg = cp.catppuccino2_statusline, fg = cp.catppuccino11 }, BufferVisible = { bg = cp.catppuccino15, fg = cp.catppuccino11 },
BufferVisibleIndex = { bg = cp.catppuccino2_statusline, fg = cp.info }, BufferVisibleIndex = { bg = cp.catppuccino15, fg = cp.info },
BufferVisibleMod = { bg = cp.catppuccino2_statusline, fg = cp.warning }, BufferVisibleMod = { bg = cp.catppuccino15, fg = cp.warning },
BufferVisibleSign = { bg = cp.catppuccino2_statusline, fg = cp.info }, BufferVisibleSign = { bg = cp.catppuccino15, fg = cp.info },
BufferVisibleTarget = { bg = cp.catppuccino2_statusline, fg = cp.catppuccino6 }, BufferVisibleTarget = { bg = cp.catppuccino15, fg = cp.catppuccino6 },
BufferInactive = { bg = cp.catppuccino2_statusline, fg = cp.catppuccino12 }, BufferInactive = { bg = cp.catppuccino15, fg = cp.catppuccino12 },
BufferInactiveIndex = { bg = cp.catppuccino2_statusline, fg = cp.catppuccino12 }, BufferInactiveIndex = { bg = cp.catppuccino15, fg = cp.catppuccino12 },
BufferInactiveMod = { bg = cp.catppuccino2_statusline, fg = util.darken(cp.warning, 0.7) }, BufferInactiveMod = { bg = cp.catppuccino15, fg = util.darken(cp.warning, 0.7) },
BufferInactiveSign = { bg = cp.catppuccino2_statusline, fg = cp.catppuccino10 }, BufferInactiveSign = { bg = cp.catppuccino15, fg = cp.catppuccino10 },
BufferInactiveTarget = { bg = cp.catppuccino2_statusline, fg = cp.catppuccino6 }, BufferInactiveTarget = { bg = cp.catppuccino15, fg = cp.catppuccino6 },
BufferTabpages = { bg = cp.catppuccino2_statusline, fg = cp.none }, BufferTabpages = { bg = cp.catppuccino15, fg = cp.none },
BufferTabpage = { bg = cp.catppuccino2_statusline, fg = cp.catppuccino10 }, BufferTabpage = { bg = cp.catppuccino15, fg = cp.catppuccino10 },
} }
end end

@ -65,8 +65,8 @@ local function get_base()
SpellLocal = { sp = cp.info, style = "undercurl" }, -- Word that is recognized by the spellchecker as one that is used in another region. |spell| Combined with the highlighting used otherwise. SpellLocal = { sp = cp.info, style = "undercurl" }, -- Word that is recognized by the spellchecker as one that is used in another region. |spell| Combined with the highlighting used otherwise.
SpellRare = { sp = cp.hint, style = "undercurl" }, -- Word that is recognized by the spellchecker as one that is hardly ever used. |spell| Combined with the highlighting used otherwise. SpellRare = { sp = cp.hint, style = "undercurl" }, -- Word that is recognized by the spellchecker as one that is hardly ever used. |spell| Combined with the highlighting used otherwise.
StatusLine = { fg = cp.catppuccino11, bg = cp.catppuccino15 }, -- status line of current window StatusLine = { fg = cp.catppuccino11, bg = cp.catppuccino15 }, -- status line of current window
StatusLineNC = { fg = cp.catppuccino13, bg = cp.catppuccino2_statusline }, -- status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window. StatusLineNC = { fg = cp.catppuccino13, bg = cp.catppuccino15 }, -- status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window.
TabLine = { bg = cp.catppuccino2_statusline, fg = cp.catppuccino13 }, -- tab pages line, not active tab page label TabLine = { bg = cp.catppuccino15, fg = cp.catppuccino13 }, -- tab pages line, not active tab page label
TabLineFill = { bg = cp.black }, -- tab pages line, where there are no labels TabLineFill = { bg = cp.black }, -- tab pages line, where there are no labels
TabLineSel = { fg = cp.catppuccino11_alt, bg = cp.catppuccino13 }, -- tab pages line, active tab page label TabLineSel = { fg = cp.catppuccino11_alt, bg = cp.catppuccino13 }, -- tab pages line, active tab page label
Title = { fg = cp.catppuccino10, style = "bold" }, -- titles for output from ":set all", ":autocmd" etcp. Title = { fg = cp.catppuccino10, style = "bold" }, -- titles for output from ":set all", ":autocmd" etcp.

Loading…
Cancel
Save