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
set_hl("@variable", { fg=colors.blue:mixed_rgb(colors.cyan):desaturated() }) -- Variable names that are defined by the languages, like `this` or `self`.
61
39
set_hl("@variable.builtin", { fg=colors.color11 }) -- Variable names that are defined by the languages, like `this` or `self`.
62
-
63
-
-- @tag = { }; -- Tags like html tag names.
64
-
-- @tagDelimiter = { }; -- Tag delimiter like `<` `>` `/`
65
-
66
-
-- Text
67
-
-- [x] Complete
68
-
-- [ ] Assigned
69
-
set_hl("@text", { fg=colors.foreground:darkened() }) -- For strings considered text in a markup language.
70
-
set_hl("@text.emphasis", { italic=true }) -- For text to be represented strong.
71
-
set_hl("@text.strong", { bold=true }) -- For text to be represented with emphasis.
72
-
set_hl("@text.underline", { underline=true }) -- For text to be represented with an underline.
73
-
set_hl("@text.strike", { strikethrough=true }) -- For strikethrough text.
74
-
set_hl("@text.title", { bold=true }) -- Text that is part of a title.
75
-
set_hl("@text.literal", nil) -- Literal text.
76
-
set_hl("@text.uri", { fg=colors.color4:darkened(0.3), underline=true }) -- Any URI like a link or email.
77
-
set_hl("@text.math", { fg=colors.color1 }) -- For latex math
40
+
set_hl("@text", { fg=colors.foreground:darkened() }) -- For strings considered text in a markup language.
41
+
set_hl("@text.emphasis", { italic=true }) -- For text to be represented strong.
42
+
set_hl("@text.strong", { bold=true }) -- For text to be represented with emphasis.
43
+
set_hl("@text.underline", { underline=true }) -- For text to be represented with an underline.
44
+
set_hl("@text.strike", { strikethrough=true }) -- For strikethrough text.
45
+
set_hl("@text.title", { bold=true }) -- Text that is part of a title.
46
+
set_hl("@text.literal", nil) -- Literal text.
47
+
set_hl("@text.uri", { fg=colors.color4:darkened(0.3), underline=true }) -- Any URI like a link or email.
48
+
set_hl("@text.math", { fg=colors.color1 }) -- For latex math
0 commit comments