Skip to content

Commit b36e661

Browse files
committed
fix(base): improve distinction between builtin and defintion types
resolves #96
1 parent 3b1f586 commit b36e661

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lua/cyberdream/extensions/base.lua

+3
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,9 @@ function M.get(opts, t)
155155
["@boolean"] = { link = "Boolean" },
156156
["@number"] = { link = "Number" },
157157
["@keyword"] = { link = "Keyword" },
158+
["@keyword.type"] = { fg = t.orange, italic = true },
159+
["@type.builtin"] = { fg = util.blend(t.purple, t.pink, 0.65) },
160+
158161
-- TreeSitter Markup
159162
["@markup.strong"] = { fg = t.pink, bold = true },
160163
["@markup.italic"] = { fg = t.blue, italic = true },

0 commit comments

Comments
 (0)