diff options
Diffstat (limited to '.config/nvim/lua/plugs-config/lualine.lua')
-rw-r--r-- | .config/nvim/lua/plugs-config/lualine.lua | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.config/nvim/lua/plugs-config/lualine.lua b/.config/nvim/lua/plugs-config/lualine.lua index 10471d8..f3d2fe7 100644 --- a/.config/nvim/lua/plugs-config/lualine.lua +++ b/.config/nvim/lua/plugs-config/lualine.lua @@ -157,6 +157,7 @@ ins_left { show_filename_only = false, hide_filename_extension = false, show_modified_status = true, + icons_enabled = true, symbols = { modified = ' ●', -- Text to show when the buffer is modified alternate_file = '', -- Text to show to identify the alternate file @@ -241,18 +242,18 @@ ins_right { } ins_right { - -- filesize component - 'filesize', - cond = conditions.buffer_not_empty, -} - -ins_right { 'branch', icon = '', color = { fg = colors.violet, gui = 'bold' }, } ins_right { + -- filesize component + 'filesize', + cond = conditions.buffer_not_empty, +} + +ins_right { 'diff', -- Is it me or the symbol for modified us really weird symbols = { added = ' ', modified = ' ', removed = ' ' }, |