nvim: after/plugin/lualine: Use simplified symbols

This commit is contained in:
Sanchayan Maity 2021-12-15 16:57:30 +05:30
parent cafd726fcf
commit 4d19532127

View file

@ -104,7 +104,7 @@ ins_left {
'diff', 'diff',
source = diffsigns_source, source = diffsigns_source,
cond = conditions.check_git_workspace, cond = conditions.check_git_workspace,
symbols = { added = '', modified = '', removed = '' }, symbols = { added = '+', modified = '~', removed = '-' },
diff_color = { diff_color = {
added = { fg = colors.green }, added = { fg = colors.green },
modified = { fg = colors.orange }, modified = { fg = colors.orange },
@ -116,7 +116,7 @@ ins_left {
ins_left { ins_left {
'diagnostics', 'diagnostics',
sources = { 'nvim_diagnostic' }, sources = { 'nvim_diagnostic' },
symbols = { error = '', warn = '', info = '', hint = '' }, symbols = { error = 'E:', warn = 'W:', info = 'I:', hint = 'H:' },
diagnostics_color = { diagnostics_color = {
color_error = { fg = colors.red }, color_error = { fg = colors.red },
color_warn = { fg = colors.yellow }, color_warn = { fg = colors.yellow },