Skip to content

Commit

Permalink
fix: symbol_file color
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmx03 committed Feb 24, 2024
1 parent 511f7e7 commit 03dff88
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dracula-soft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ symbol_map:
color: &symbol_color
fg: orange
file: &symbol_file
fg: Identifier
link: Identifier
reference: &symbol_reference
link: Underlined
folder: &symbol_folder
Expand Down
2 changes: 1 addition & 1 deletion dracula.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ symbol_map:
color: &symbol_color
fg: orange
file: &symbol_file
fg: Identifier
link: Identifier
reference: &symbol_reference
link: Underlined
folder: &symbol_folder
Expand Down
4 changes: 2 additions & 2 deletions lua/dracula/highlights/dracula-soft.lua
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ M.set_highlight = function(colors, config)
nvim_set_hl('NavicIconsKeyword', { link = 'Statement' })
nvim_set_hl('NavicIconsSnippet', { link = 'Tag' })
nvim_set_hl('NavicIconsColor', { fg = colors.orange })
nvim_set_hl('NavicIconsFile', { fg = colors.Identifier })
nvim_set_hl('NavicIconsFile', { link = 'Identifier' })
nvim_set_hl('NavicIconsReference', { link = 'Underlined' })
nvim_set_hl('NavicIconsFolder', { link = 'Directory' })
nvim_set_hl('NavicIconsEnumMember', { link = 'Constant' })
Expand All @@ -619,7 +619,7 @@ M.set_highlight = function(colors, config)
nvim_set_hl('CmpItemKindKeyword', { link = 'Statement' })
nvim_set_hl('CmpItemKindSnippet', { link = 'Tag' })
nvim_set_hl('CmpItemKindColor', { fg = colors.orange })
nvim_set_hl('CmpItemKindFile', { fg = colors.Identifier })
nvim_set_hl('CmpItemKindFile', { link = 'Identifier' })
nvim_set_hl('CmpItemKindReference', { link = 'Underlined' })
nvim_set_hl('CmpItemKindFolder', { link = 'Directory' })
nvim_set_hl('CmpItemKindEnumMember', { link = 'Constant' })
Expand Down
4 changes: 2 additions & 2 deletions lua/dracula/highlights/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ M.set_highlight = function(colors, config)
nvim_set_hl('NavicIconsKeyword', { link = 'Statement' })
nvim_set_hl('NavicIconsSnippet', { link = 'Tag' })
nvim_set_hl('NavicIconsColor', { fg = colors.orange })
nvim_set_hl('NavicIconsFile', { fg = colors.Identifier })
nvim_set_hl('NavicIconsFile', { link = 'Identifier' })
nvim_set_hl('NavicIconsReference', { link = 'Underlined' })
nvim_set_hl('NavicIconsFolder', { link = 'Directory' })
nvim_set_hl('NavicIconsEnumMember', { link = 'Constant' })
Expand All @@ -619,7 +619,7 @@ M.set_highlight = function(colors, config)
nvim_set_hl('CmpItemKindKeyword', { link = 'Statement' })
nvim_set_hl('CmpItemKindSnippet', { link = 'Tag' })
nvim_set_hl('CmpItemKindColor', { fg = colors.orange })
nvim_set_hl('CmpItemKindFile', { fg = colors.Identifier })
nvim_set_hl('CmpItemKindFile', { link = 'Identifier' })
nvim_set_hl('CmpItemKindReference', { link = 'Underlined' })
nvim_set_hl('CmpItemKindFolder', { link = 'Directory' })
nvim_set_hl('CmpItemKindEnumMember', { link = 'Constant' })
Expand Down

0 comments on commit 03dff88

Please sign in to comment.