Skip to content

Commit 29eedf7

Browse files
update field and property
1 parent 770408a commit 29eedf7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lua/lunar/theme.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ theme.set_highlights = function()
148148
hl(0, "@type.qualifier", { link = 'Type' })
149149
hl(0, "@storageclass", { link = 'StorageClass' })
150150
hl(0, "@attribute", { link = 'PreProc' })
151-
hl(0, "@field", { link = 'Identifier' })
152-
hl(0, "@property", { link = 'Identifier' })
151+
hl(0, "@field", { fg = c.green1, bg = 'NONE' })
152+
hl(0, "@property", { fg = c.green1, bg = 'NONE' })
153153
hl(0, "@variable", { link = 'Variable' })
154154
hl(0, "@variable.builtin", { fg = c.red, bg = 'NONE' })
155155
hl(0, "@constant", { link = 'Constant' })

lunarvim.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,8 @@ Underlined = '- - u'
238238

239239
'@storageclass' = 'link:StorageClass'
240240
'@attribute' = 'link:PreProc'
241-
'@field' = 'link:Identifier'
242-
'@property' = 'link:Identifier'
241+
'@field' = 'green1'
242+
'@property' = 'green1'
243243

244244
# Identifiers
245245
'@variable' = 'link:Variable'

0 commit comments

Comments
 (0)