mirror of
https://github.com/maxmx03/dracula.nvim.git
synced 2026-09-10 07:26:19 -04:00
fix: symbol_file color
This commit is contained in:
parent
511f7e7780
commit
03dff88b0c
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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' })
|
||||
|
|
@ -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' })
|
||||
|
|
|
|||
|
|
@ -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' })
|
||||
|
|
@ -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' })
|
||||
|
|
|
|||
Loading…
Reference in a new issue