fix: symbol_file color

This commit is contained in:
max miliano 2024-02-24 13:38:58 -03:00
parent 511f7e7780
commit 03dff88b0c
4 changed files with 6 additions and 6 deletions

View file

@ -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

View file

@ -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

View file

@ -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' })

View file

@ -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' })