Skip to content

Commit dcfa0a3

Browse files
committed
fix(treesitter): improve contrast for asm builtins and rust imports
#159
1 parent 4f8dcaa commit dcfa0a3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lua/cyberdream/extensions/treesitter.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function M.get(opts, t)
2424
["@field"] = { link = "Identifier" },
2525
["@float"] = { link = "Float" },
2626
["@function"] = { link = "Function" },
27-
["@function.builtin"] = { link = "Special" },
27+
["@function.builtin"] = { link = "Function" },
2828
["@function.call"] = { link = "@function" },
2929
["@function.macro"] = { link = "Macro" },
3030
["@include"] = { link = "Include" },
@@ -52,6 +52,7 @@ function M.get(opts, t)
5252
["@markup.strong"] = { fg = t.pink, bold = true },
5353
["@method"] = { link = "Function" },
5454
["@method.call"] = { link = "@method" },
55+
["@module"] = { fg = t.magenta },
5556
["@namespace"] = { link = "Include" },
5657
["@none"] = { default = true },
5758
["@number"] = { link = "Number" },

0 commit comments

Comments
 (0)