Skip to content

Commit

Permalink
fix: symbol_unit color
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmx03 committed Feb 24, 2024
1 parent 03dff88 commit 264d83a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions dracula-soft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ symbol_map:
link: Type
property: &symbol_property
link: Identifier
unit: &symbol_unity
unit: &symbol_unit
link: Number
enum: &symbol_enum
link: Type
Expand Down Expand Up @@ -683,8 +683,8 @@ highlights:
<<: *symbol_module
- name: NavicIconsProperty
<<: *symbol_property
- name: NavicIconsUnity
<<: *symbol_unity
- name: NavicIconsUnit
<<: *symbol_unit
- name: NavicIconsEnum
<<: *symbol_enum
- name: NavicIconsKeyword
Expand Down Expand Up @@ -730,8 +730,8 @@ highlights:
<<: *symbol_module
- name: CmpItemKindProperty
<<: *symbol_property
- name: CmpItemKindUnity
<<: *symbol_unity
- name: CmpItemKindUnit
<<: *symbol_unit
- name: CmpItemKindEnum
<<: *symbol_enum
- name: CmpItemKindKeyword
Expand Down
10 changes: 5 additions & 5 deletions dracula.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ symbol_map:
link: Type
property: &symbol_property
link: Identifier
unit: &symbol_unity
unit: &symbol_unit
link: Number
enum: &symbol_enum
link: Type
Expand Down Expand Up @@ -682,8 +682,8 @@ highlights:
<<: *symbol_module
- name: NavicIconsProperty
<<: *symbol_property
- name: NavicIconsUnity
<<: *symbol_unity
- name: NavicIconsUnit
<<: *symbol_unit
- name: NavicIconsEnum
<<: *symbol_enum
- name: NavicIconsKeyword
Expand Down Expand Up @@ -729,8 +729,8 @@ highlights:
<<: *symbol_module
- name: CmpItemKindProperty
<<: *symbol_property
- name: CmpItemKindUnity
<<: *symbol_unity
- name: CmpItemKindUnit
<<: *symbol_unit
- name: CmpItemKindEnum
<<: *symbol_enum
- name: CmpItemKindKeyword
Expand Down
8 changes: 4 additions & 4 deletions lua/dracula/highlights/dracula-soft.lua
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
---@field NavicIconsModule? table
---@field NavicIconsNamespace? table
---@field NavicIconsProperty? table
---@field NavicIconsUnity? table
---@field NavicIconsUnit? table
---@field NavicIconsEnum? table
---@field NavicIconsKeyword? table
---@field NavicIconsSnippet? table
Expand All @@ -156,7 +156,7 @@
---@field CmpItemKindInterface? table
---@field CmpItemKindModule? table
---@field CmpItemKindProperty? table
---@field CmpItemKindUnity? table
---@field CmpItemKindUnit? table
---@field CmpItemKindEnum? table
---@field CmpItemKindKeyword? table
---@field CmpItemKindSnippet? table
Expand Down Expand Up @@ -588,7 +588,7 @@ M.set_highlight = function(colors, config)
nvim_set_hl('NavicIconsModule', { link = 'Type' })
nvim_set_hl('NavicIconsNamespace', { link = 'Type' })
nvim_set_hl('NavicIconsProperty', { link = 'Identifier' })
nvim_set_hl('NavicIconsUnity', { link = 'Number' })
nvim_set_hl('NavicIconsUnit', { link = 'Number' })
nvim_set_hl('NavicIconsEnum', { link = 'Type' })
nvim_set_hl('NavicIconsKeyword', { link = 'Statement' })
nvim_set_hl('NavicIconsSnippet', { link = 'Tag' })
Expand All @@ -614,7 +614,7 @@ M.set_highlight = function(colors, config)
nvim_set_hl('CmpItemKindInterface', { link = 'Type' })
nvim_set_hl('CmpItemKindModule', { link = 'Type' })
nvim_set_hl('CmpItemKindProperty', { link = 'Identifier' })
nvim_set_hl('CmpItemKindUnity', { link = 'Number' })
nvim_set_hl('CmpItemKindUnit', { link = 'Number' })
nvim_set_hl('CmpItemKindEnum', { link = 'Type' })
nvim_set_hl('CmpItemKindKeyword', { link = 'Statement' })
nvim_set_hl('CmpItemKindSnippet', { link = 'Tag' })
Expand Down
8 changes: 4 additions & 4 deletions lua/dracula/highlights/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
---@field NavicIconsModule? table
---@field NavicIconsNamespace? table
---@field NavicIconsProperty? table
---@field NavicIconsUnity? table
---@field NavicIconsUnit? table
---@field NavicIconsEnum? table
---@field NavicIconsKeyword? table
---@field NavicIconsSnippet? table
Expand All @@ -156,7 +156,7 @@
---@field CmpItemKindInterface? table
---@field CmpItemKindModule? table
---@field CmpItemKindProperty? table
---@field CmpItemKindUnity? table
---@field CmpItemKindUnit? table
---@field CmpItemKindEnum? table
---@field CmpItemKindKeyword? table
---@field CmpItemKindSnippet? table
Expand Down Expand Up @@ -588,7 +588,7 @@ M.set_highlight = function(colors, config)
nvim_set_hl('NavicIconsModule', { link = 'Type' })
nvim_set_hl('NavicIconsNamespace', { link = 'Type' })
nvim_set_hl('NavicIconsProperty', { link = 'Identifier' })
nvim_set_hl('NavicIconsUnity', { link = 'Number' })
nvim_set_hl('NavicIconsUnit', { link = 'Number' })
nvim_set_hl('NavicIconsEnum', { link = 'Type' })
nvim_set_hl('NavicIconsKeyword', { link = 'Statement' })
nvim_set_hl('NavicIconsSnippet', { link = 'Tag' })
Expand All @@ -614,7 +614,7 @@ M.set_highlight = function(colors, config)
nvim_set_hl('CmpItemKindInterface', { link = 'Type' })
nvim_set_hl('CmpItemKindModule', { link = 'Type' })
nvim_set_hl('CmpItemKindProperty', { link = 'Identifier' })
nvim_set_hl('CmpItemKindUnity', { link = 'Number' })
nvim_set_hl('CmpItemKindUnit', { link = 'Number' })
nvim_set_hl('CmpItemKindEnum', { link = 'Type' })
nvim_set_hl('CmpItemKindKeyword', { link = 'Statement' })
nvim_set_hl('CmpItemKindSnippet', { link = 'Tag' })
Expand Down

0 comments on commit 264d83a

Please sign in to comment.