Skip to content

Commit

Permalink
Fix builting function color
Browse files Browse the repository at this point in the history
  • Loading branch information
gepbird committed Jun 24, 2023
1 parent fc613c2 commit c8417fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion darkplus.toml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ TSKeywordReturn = 'link:Include'
TSKeywordOperator = 'link:Include'
TSKeywordFunction = 'link:Keyword'
TSFunction = 'link:Function'
TSFuncBuiltin = 'link:Type'
TSFuncBuiltin = 'link:Function'
TSMethod = 'link:Function'
TSFuncMacro = 'link:Function'
TSConditional = 'link:Conditional'
Expand Down
2 changes: 1 addition & 1 deletion lua/darkplus/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ theme.set_highlights = function()
hl(0, "@number", { link = 'Number' })
hl(0, "@float", { link = 'Float' })
hl(0, "@function", { link = 'Function' })
hl(0, "@function.builtin", { link = 'Type' })
hl(0, "@function.builtin", { link = 'Function' })
hl(0, "@function.call", { link = 'Function' })
hl(0, "@function.macro", { link = 'Macro' })
hl(0, "@method", { link = 'Function' })
Expand Down

0 comments on commit c8417fd

Please sign in to comment.