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-2
Original file line number
Diff line number
Diff line change
@@ -49,8 +49,8 @@ function M.get()
49
49
PmenuThumb= { bg=C.overlay0 }, -- Popup menu: Thumb of the scrollbar.
50
50
Question= { fg=C.blue }, -- |hit-enter| prompt and yes/no questions
51
51
QuickFixLine= { bg=C.surface1, style= { "bold" } }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
52
-
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.
53
-
IncSearch= { bg=U.darken(C.sky, 0.90, C.base), fg=C.mantle }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c"
52
+
Search= { bg=C.surface1, fg=C.pink, style={ "bold" } }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
53
+
IncSearch= { bg=C.pink, fg=C.surface1 }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c"
54
54
CurSearch= { bg=C.red, fg=C.mantle }, -- 'cursearch' highlighting: highlights the current search you're on differently
55
55
SpecialKey= { fg=C.text }, -- Unprintable characters: text displayed differently from what it really is. But not 'listchars' textspace. |hl-Whitespace|
56
56
SpellBad= { sp=C.red, style= { "undercurl" } }, -- Word that is not recognized by the spellchecker. |spell| Combined with the highlighting used otherwise.
["@punctuation.bracket"] = { fg=C.overlay2 }, -- For brackets and parenthesis.
27
-
["@punctuation.special"] = { link="Special" }, -- For special punctutation that does not fall in the categories before.
27
+
["@punctuation.special"] = { link="Special" }, -- For special punctuation that does not fall in the categories before (e.g. `{}` in string interpolation).
28
28
29
29
-- Literals
30
30
["@string"] = { link="String" }, -- For strings.
@@ -43,21 +43,20 @@ If you want to stay on nvim 0.7, either disable the integration or pin catppucci
43
43
["@function"] = { link="Function" }, -- For function (calls and definitions).
44
44
["@function.builtin"] = { fg=C.peach, style=O.styles.functionsor {} }, -- For builtin functions: table.insert in Lua.
45
45
["@function.call"] = { link="Function" }, -- function calls
46
-
["@function.macro"] = { fg=C.teal, style=O.styles.functionsor {} }, -- For macro defined functions (calls and definitions): each macro_rules in RusC.
47
-
["@method"] = { link="Function" }, -- For method calls and definitions.
0 commit comments