nvim: after/plugin/lualine: Use simplified symbols
This commit is contained in:
parent
cafd726fcf
commit
4d19532127
1 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,7 @@ ins_left {
|
|||
'diff',
|
||||
source = diffsigns_source,
|
||||
cond = conditions.check_git_workspace,
|
||||
symbols = { added = ' ', modified = ' ', removed = ' ' },
|
||||
symbols = { added = '+', modified = '~', removed = '-' },
|
||||
diff_color = {
|
||||
added = { fg = colors.green },
|
||||
modified = { fg = colors.orange },
|
||||
|
@ -116,7 +116,7 @@ ins_left {
|
|||
ins_left {
|
||||
'diagnostics',
|
||||
sources = { 'nvim_diagnostic' },
|
||||
symbols = { error = ' ', warn = ' ', info = ' ', hint = ' ' },
|
||||
symbols = { error = 'E:', warn = 'W:', info = 'I:', hint = 'H:' },
|
||||
diagnostics_color = {
|
||||
color_error = { fg = colors.red },
|
||||
color_warn = { fg = colors.yellow },
|
||||
|
|
Loading…
Reference in a new issue