@ -350,6 +359,17 @@ let g:lightline = {'colorscheme': 'catppuccino'}
- **Kitty:** Copy and paste the file corresponding to theme you want to use from [this directory](https://github.com/Pocco81/Catppuccino.nvim/tree/main/extra/kitty) on your Kitty config.
- **Alacritty:** Copy and paste the file corresponding to theme you want to use from [this directory](https://github.com/Pocco81/Catppuccino.nvim/tree/main/extra/alacritty) on your Alacritty config.
- **NvimTree:** setting `enabled` to `true` enables this integration:
```lua
integration = {
nvimtree = {
enabled = true,
show_root = true, -- makes the root folder not transparent
return{status=false,msg="Catppuccino: the colorscheme '"..cs.."' was not recognized. Defaulting to Catppuccino Dark."},require("catppuccino.color_schemes.catppuccino")
return{
status=false,
msg="Catppuccino: the colorscheme '"..cs.."' was not recognized. Defaulting to Catppuccino Dark.",
-- These groups are for the native LSP cliencpt. Some other LSP clients may
-- use these groups, or use their own. Consult your LSP client's
-- documentation.
LspReferenceText={bg=cpt.fg_gutter},-- used for highlighting "text" references
LspReferenceRead={bg=cpt.fg_gutter},-- used for highlighting "read" references
LspReferenceWrite={bg=cpt.fg_gutter},-- used for highlighting "write" references
-- hightlight diagnostics in numberline
LspDiagnosticsDefaultError={fg=cpt.error},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultWarning={fg=cpt.warning},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultInformation={fg=cpt.info},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultHint={fg=cpt.hint},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspSignatureActiveParameter={fg=cpt.orange},
-- LspDiagnosticsFloatingError = { }, -- Used to color "Error" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingWarning = { }, -- Used to color "Warning" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingInformation = { }, -- Used to color "Information" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingHint = { }, -- Used to color "Hint" diagnostic messages in diagnostics float
return{
-- These groups are for the native LSP cliencpt. Some other LSP clients may
-- use these groups, or use their own. Consult your LSP client's
-- documentation.
LspReferenceText={bg=cpt.fg_gutter},-- used for highlighting "text" references
LspReferenceRead={bg=cpt.fg_gutter},-- used for highlighting "read" references
LspReferenceWrite={bg=cpt.fg_gutter},-- used for highlighting "write" references
-- hightlight diagnostics in numberline
LspDiagnosticsDefaultError={fg=cpt.error},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultWarning={fg=cpt.warning},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultInformation={fg=cpt.info},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultHint={fg=cpt.hint},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspSignatureActiveParameter={fg=cpt.orange},
-- LspDiagnosticsFloatingError = { }, -- Used to color "Error" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingWarning = { }, -- Used to color "Warning" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingInformation = { }, -- Used to color "Information" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingHint = { }, -- Used to color "Hint" diagnostic messages in diagnostics float
LspDiagnosticsError={fg=cpt.error},
LspDiagnosticsWarning={fg=cpt.warning},
LspDiagnosticsInformation={fg=cpt.info},
LspDiagnosticsHint={fg=cpt.hint},
LspDiagnosticsVirtualTextError={fg=cpt.error,style=cpc.integrations.native_lsp.styles.errors},-- Used for "Error" diagnostic virtual text
LspDiagnosticsVirtualTextWarning={fg=cpt.warning,style=cpc.integrations.native_lsp.styles.warnings},-- Used for "Warning" diagnostic virtual text
LspDiagnosticsVirtualTextInformation={fg=cpt.info,style=cpc.integrations.native_lsp.styles.information},-- Used for "Information" diagnostic virtual text
LspDiagnosticsVirtualTextHint={fg=cpt.hint,style=cpc.integrations.native_lsp.styles.hints},-- Used for "Hint" diagnostic virtual text
LspDiagnosticsUnderlineError={style="underline",sp=cpt.error},-- Used to underline "Error" diagnostics
LspDiagnosticsUnderlineWarning={style="underline",sp=cpt.warning},-- Used to underline "Warning" diagnostics
LspDiagnosticsUnderlineInformation={style="underline",sp=cpt.info},-- Used to underline "Information" diagnostics
LspDiagnosticsUnderlineHint={style="underline",sp=cpt.hint},-- Used to underline "Hint" diagnostics
LspCodeLens={fg=cpt.comment}-- virtual text of the codelens
}
LspDiagnosticsError={fg=cpt.error},
LspDiagnosticsWarning={fg=cpt.warning},
LspDiagnosticsInformation={fg=cpt.info},
LspDiagnosticsHint={fg=cpt.hint},
LspDiagnosticsVirtualTextError={fg=cpt.error,style=cpc.integrations.native_lsp.styles.errors},-- Used for "Error" diagnostic virtual text
LspDiagnosticsVirtualTextWarning={fg=cpt.warning,style=cpc.integrations.native_lsp.styles.warnings},-- Used for "Warning" diagnostic virtual text
LspDiagnosticsVirtualTextInformation={fg=cpt.info,style=cpc.integrations.native_lsp.styles.information},-- Used for "Information" diagnostic virtual text
LspDiagnosticsVirtualTextHint={fg=cpt.hint,style=cpc.integrations.native_lsp.styles.hints},-- Used for "Hint" diagnostic virtual text
LspDiagnosticsUnderlineError={style="underline",sp=cpt.error},-- Used to underline "Error" diagnostics
LspDiagnosticsUnderlineWarning={style="underline",sp=cpt.warning},-- Used to underline "Warning" diagnostics
LspDiagnosticsUnderlineInformation={style="underline",sp=cpt.info},-- Used to underline "Information" diagnostics
LspDiagnosticsUnderlineHint={style="underline",sp=cpt.hint},-- Used to underline "Hint" diagnostics
LspCodeLens={fg=cpt.comment},-- virtual text of the codelens
MsgArea={fg=cpt.white_br},-- Area for messages and cmdline
MsgSeparator={},-- Separator for scrolled messages, `msgsep` flag of 'display'
MoreMsg={fg=cpt.blue},-- |more-prompt|
NonText={fg=cpt.comment},-- '@' 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=cpt.fg,bg=cpc.transparencyandcpt.noneorcpt.bg},-- normal text
NormalNC={fg=cpt.fg,bg=cpc.transparencyandcpt.noneorcpt.bg},-- normal text in non-current windows
NormalSB={fg=cpt.fg_sidebar,bg=cpt.bg_sidebar},-- normal text in non-current windows
NormalFloat={fg=cpt.fg,bg=cpt.bg_float},-- Normal text in floating windows.
FloatBorder={fg=cpt.border_highlight},
Pmenu={bg=cpt.bg_popup,fg=cpt.fg},-- Popup menu: normal item.
PmenuThumb={bg=cpt.fg_gutter},-- Popup menu: Thumb of the scrollbar.
Question={fg=cpt.blue},-- |hit-enter| prompt and yes/no questions
QuickFixLine={bg=cpt.bg_visual,style="bold"},-- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
Search={bg=cpt.bg_search,fg=cpt.fg},-- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand oucpt.
IncSearch={bg=cpt.cyan,fg=cpt.black},-- 'incsearch' highlighting; also used for the text replaced with ":s///c"
SpecialKey={fg=cpt.black},-- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace|
SpellBad={sp=cpt.error,style="undercurl"},-- Word that is not recognized by the spellchecker. |spell| Combined with the highlighting used otherwise.
SpellCap={sp=cpt.warning,style="undercurl"},-- Word that should start with a capital. |spell| Combined with the highlighting used otherwise.
SpellLocal={sp=cpt.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=cpt.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=cpt.fg_sidebar,bg=cpt.bg_statusline},-- status line of current window
StatusLineNC={fg=cpt.fg_gutter,bg=cpt.bg_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.
TabLine={bg=cpt.bg_statusline,fg=cpt.fg_gutter},-- tab pages line, not active tab page label
TabLineFill={bg=cpt.black},-- tab pages line, where there are no labels
TabLineSel={fg=cpt.fg_alt,bg=cpt.fg_gutter},-- tab pages line, active tab page label
Title={fg=cpt.blue,style="bold"},-- titles for output from ":set all", ":autocmd" etcpt.
MsgArea={fg=cpt.white_br},-- Area for messages and cmdline
MsgSeparator={},-- Separator for scrolled messages, `msgsep` flag of 'display'
MoreMsg={fg=cpt.blue},-- |more-prompt|
NonText={fg=cpt.comment},-- '@' 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=cpt.fg,bg=cpc.transparencyandcpt.noneorcpt.bg},-- normal text
NormalNC={fg=cpt.fg,bg=cpc.transparencyandcpt.noneorcpt.bg},-- normal text in non-current windows
NormalSB={fg=cpt.fg_sidebar,bg=cpt.bg_sidebar},-- normal text in non-current windows
NormalFloat={fg=cpt.fg,bg=cpt.bg_float},-- Normal text in floating windows.
FloatBorder={fg=cpt.border_highlight},
Pmenu={bg=cpt.bg_popup,fg=cpt.fg},-- Popup menu: normal item.
PmenuThumb={bg=cpt.fg_gutter},-- Popup menu: Thumb of the scrollbar.
Question={fg=cpt.blue},-- |hit-enter| prompt and yes/no questions
QuickFixLine={bg=cpt.bg_visual,style="bold"},-- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
Search={bg=cpt.bg_search,fg=cpt.fg},-- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand oucpt.
IncSearch={bg=cpt.cyan,fg=cpt.black},-- 'incsearch' highlighting; also used for the text replaced with ":s///c"
SpecialKey={fg=cpt.black},-- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace|
SpellBad={sp=cpt.error,style="undercurl"},-- Word that is not recognized by the spellchecker. |spell| Combined with the highlighting used otherwise.
SpellCap={sp=cpt.warning,style="undercurl"},-- Word that should start with a capital. |spell| Combined with the highlighting used otherwise.
SpellLocal={sp=cpt.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=cpt.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=cpt.fg_sidebar,bg=cpt.bg_statusline},-- status line of current window
StatusLineNC={fg=cpt.fg_gutter,bg=cpt.bg_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.
TabLine={bg=cpt.bg_statusline,fg=cpt.fg_gutter},-- tab pages line, not active tab page label
TabLineFill={bg=cpt.black},-- tab pages line, where there are no labels
TabLineSel={fg=cpt.fg_alt,bg=cpt.fg_gutter},-- tab pages line, active tab page label
Title={fg=cpt.blue,style="bold"},-- titles for output from ":set all", ":autocmd" etcpt.