You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lua/catppuccin/groups/editor.lua
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ function M.get()
22
22
Substitute= {bg=C.surface1,fg=U.vary_color({latte=C.red },C.pink) },-- |:substitute| replacement text highlighting
23
23
LineNr= {fg=C.surface1 },-- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
24
24
CursorLineNr= {fg=C.lavender },-- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line. highlights the number in numberline.
25
-
MatchParen= {fg=C.peach,bg=C.surface1,style= {"bold"} },-- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
25
+
MatchParen= {fg=C.peach,bg=U.darken(C.surface1,0.70,C.base),style= {"bold"} },-- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
-- MsgArea = { fg = C.text }, -- Area for messages and cmdline, don't set this highlight because of https://github.com/neovim/neovim/issues/17832
28
28
MsgSeparator= {},-- Separator for scrolled messages, `msgsep` flag of 'display'
@@ -63,7 +63,7 @@ function M.get()
63
63
style= {"bold"},
64
64
},-- Popup menu: selected item extra text.
65
65
Question= {fg=C.blue },-- |hit-enter| prompt and yes/no questions
66
-
QuickFixLine= {bg=C.surface1,style= {"bold"} },-- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
66
+
QuickFixLine= {bg=U.darken(C.surface1,0.70,C.base),style= {"bold"} },-- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
67
67
Search= {bg=U.darken(C.sky,0.30,C.base),fg=C.text },-- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
68
68
IncSearch= {bg=U.darken(C.sky,0.90,C.base),fg=C.mantle },-- 'incsearch' highlighting; also used for the text replaced with ":s///c"
69
69
CurSearch= {bg=C.red,fg=C.mantle },-- 'cursearch' highlighting: highlights the current search you're on differently