Skip to content

Commit

Permalink
update field and property
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianChiarulli committed Oct 31, 2022
1 parent 770408a commit 29eedf7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lua/lunar/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ theme.set_highlights = function()
hl(0, "@type.qualifier", { link = 'Type' })
hl(0, "@storageclass", { link = 'StorageClass' })
hl(0, "@attribute", { link = 'PreProc' })
hl(0, "@field", { link = 'Identifier' })
hl(0, "@property", { link = 'Identifier' })
hl(0, "@field", { fg = c.green1, bg = 'NONE' })
hl(0, "@property", { fg = c.green1, bg = 'NONE' })
hl(0, "@variable", { link = 'Variable' })
hl(0, "@variable.builtin", { fg = c.red, bg = 'NONE' })
hl(0, "@constant", { link = 'Constant' })
Expand Down
4 changes: 2 additions & 2 deletions lunarvim.toml
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ Underlined = '- - u'

'@storageclass' = 'link:StorageClass'
'@attribute' = 'link:PreProc'
'@field' = 'link:Identifier'
'@property' = 'link:Identifier'
'@field' = 'green1'
'@property' = 'green1'

# Identifiers
'@variable' = 'link:Variable'
Expand Down

0 comments on commit 29eedf7

Please sign in to comment.