mirror of https://github.com/sgoudham/nvim.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
6.6 KiB
Lua
83 lines
6.6 KiB
Lua
local M = {}
|
|
|
|
local ucolors = require("catppuccin.utils.colors")
|
|
local lui = require("catppuccin.lib.ui")
|
|
|
|
function M.get()
|
|
return {
|
|
ColorColumn = { bg = cp.surface0 }, -- used for the columns set with 'colorcolumn'
|
|
Conceal = { fg = cp.overlay1 }, -- placeholder characters substituted for concealed text (see 'conceallevel')
|
|
Cursor = { fg = cp.base, bg = cp.text }, -- character under the cursor
|
|
lCursor = { fg = cp.base, bg = cp.text }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
|
CursorIM = { fg = cp.base, bg = cp.text }, -- like Cursor, but used when in IME mode |CursorIM|
|
|
CursorColumn = { bg = cp.mantle }, -- Screen-column at the cursor, when 'cursorcolumn' is secp.
|
|
CursorLine = {
|
|
bg = ucolors.vary_color(
|
|
{ latte = ucolors.lighten(cp.mantle, 0.70, cp.base) },
|
|
ucolors.darken(cp.surface0, 0.64, cp.base)
|
|
),
|
|
}, -- Screen-line at the cursor, when 'cursorline' is secp. Low-priority if forecrust (ctermfg OR guifg) is not secp.
|
|
Directory = { fg = cp.blue }, -- directory names (and other special names in listings)
|
|
EndOfBuffer = { fg = cp.base }, -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|.
|
|
ErrorMsg = { fg = cp.red, style = { "bold", "italic" } }, -- error messages on the command line
|
|
VertSplit = { fg = cp.crust }, -- the column separating vertically split windows
|
|
Folded = { fg = cp.blue, bg = cp.surface1 }, -- line used for closed folds
|
|
FoldColumn = { bg = cp.base, fg = cp.overlay0 }, -- 'foldcolumn'
|
|
SignColumn = { bg = cnf.transparent_background and cp.none or cp.base, fg = cp.surface1 }, -- column where |signs| are displayed
|
|
SignColumnSB = { bg = cp.crust, fg = cp.surface1 }, -- column where |signs| are displayed
|
|
Substitute = { bg = cp.surface1, fg = cp.pink }, -- |:substitute| replacement text highlighting
|
|
LineNr = { fg = ucolors.vary_color({ latte = cp.base0 }, cp.surface1) }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is secp.
|
|
CursorLineNr = { fg = cp.lavender }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line. highlights the number in numberline.
|
|
MatchParen = { fg = cp.peach, style = { "bold" } }, -- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
|
|
ModeMsg = { fg = cp.text, style = { "bold" } }, -- 'showmode' message (e.g., "-- INSERT -- ")
|
|
MsgArea = { fg = cp.text }, -- Area for messages and cmdline
|
|
MsgSeparator = {}, -- Separator for scrolled messages, `msgsep` flag of 'display'
|
|
MoreMsg = { fg = cp.blue }, -- |more-prompt|
|
|
NonText = { fg = cp.overlay0 }, -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|.
|
|
Normal = { fg = cp.text, bg = cnf.transparent_background and cp.none or cp.base }, -- normal text
|
|
NormalNC = {
|
|
fg = cp.text,
|
|
bg = (cnf.transparent_background and cnf.dim_inactive.enabled and lui.dim())
|
|
or (cnf.dim_inactive.enabled and cp.dim)
|
|
or (cnf.transparent_background and cp.none)
|
|
or cp.base,
|
|
}, -- normal text in non-current windows
|
|
NormalSB = { fg = cp.text, bg = cp.crust }, -- normal text in non-current windows
|
|
NormalFloat = { fg = cp.text, bg = cp.mantle }, -- Normal text in floating windows.
|
|
FloatBorder = { fg = cp.blue },
|
|
Pmenu = { bg = cp.surface0, fg = cp.overlay2 }, -- Popup menu: normal item.
|
|
PmenuSel = { fg = cp.text, bg = cp.surface1, style = { "bold" } }, -- Popup menu: selected item.
|
|
PmenuSbar = { bg = cp.surface1 }, -- Popup menu: scrollbar.
|
|
PmenuThumb = { bg = cp.overlay0 }, -- Popup menu: Thumb of the scrollbar.
|
|
Question = { fg = cp.blue }, -- |hit-enter| prompt and yes/no questions
|
|
QuickFixLine = { bg = cp.surface1, style = { "bold" } }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
|
|
Search = { bg = ucolors.darken(cp.sky, 0.30, cp.base), fg = cp.text }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand oucp.
|
|
IncSearch = { bg = ucolors.darken(cp.sky, 0.90, cp.base), fg = cp.mantle }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c"
|
|
CurSearch = { bg = cp.red, fg = cp.mantle }, -- 'cursearch' highlighting: highlights the current search you're on differently
|
|
SpecialKey = { fg = cp.text }, -- Unprintable characters: text displayed differently from what it really is. But not 'listchars' textspace. |hl-Whitespace|
|
|
SpellBad = { sp = cp.red, style = { "undercurl" } }, -- Word that is not recognized by the spellchecker. |spell| Combined with the highlighting used otherwise.
|
|
SpellCap = { sp = cp.yellow, style = { "undercurl" } }, -- Word that should start with a capital. |spell| Combined with the highlighting used otherwise.
|
|
SpellLocal = { sp = cp.blue, 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.green, 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.text, bg = cp.mantle }, -- status line of current window
|
|
StatusLineNC = { fg = cp.surface1, bg = cp.mantle }, -- 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.mantle, fg = cp.surface1 }, -- tab pages line, not active tab page label
|
|
TabLineFill = { bg = cp.black }, -- tab pages line, where there are no labels
|
|
TabLineSel = { fg = cp.green, bg = cp.surface1 }, -- tab pages line, active tab page label
|
|
Title = { fg = cp.blue, style = { "bold" } }, -- titles for output from ":set all", ":autocmd" etcp.
|
|
Visual = { bg = cp.surface1, style = { "bold" } }, -- Visual mode selection
|
|
VisualNOS = { bg = cp.surface1, style = { "bold" } }, -- Visual mode selection when vim is "Not Owning the Selection".
|
|
WarningMsg = { fg = cp.yellow }, -- warning messages
|
|
Whitespace = { fg = cp.surface1 }, -- "nbsp", "space", "tab" and "trail" in 'listchars'
|
|
WildMenu = { bg = cp.overlay0 }, -- current match in 'wildmenu' completion
|
|
WinBar = { fg = cp.rosewater },
|
|
-- These groups are not listed as default vim groups,
|
|
-- but they are defacto standard group names for syntax highlighting.
|
|
-- overlay0ed out groups should chain up to their "preferred" group by
|
|
-- default,
|
|
-- Unoverlay0 and edit if you want more specific syntax highlighting.
|
|
}
|
|
end
|
|
|
|
return M
|