diff options
Diffstat (limited to '')
-rw-r--r-- | .config/nvim/lua/plugs-config/lualine.lua | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/.config/nvim/lua/plugs-config/lualine.lua b/.config/nvim/lua/plugs-config/lualine.lua index 56e7d83..6646d02 100644 --- a/.config/nvim/lua/plugs-config/lualine.lua +++ b/.config/nvim/lua/plugs-config/lualine.lua @@ -146,16 +146,23 @@ ins_left { padding = { right = 1 }, } -ins_left { - -- filesize component - 'filesize', - cond = conditions.buffer_not_empty, -} +-- ins_left { +-- 'filename', +-- cond = conditions.buffer_not_empty, +-- color = { fg = colors.magenta, gui = 'bold' }, +-- } ins_left { - 'filename', - cond = conditions.buffer_not_empty, - color = { fg = colors.magenta, gui = 'bold' }, + 'buffers', + show_filename_only = true, + hide_filename_extension = false, + show_modified_status = true, + -- color = { fg = colors.darkblue }, + -- buffers_color = { + -- -- Same values as the general color option can be used here. + -- active = 'lualine_{section}_active', -- Color for active buffer. + -- inactive = 'lualine_{section}_inactive', -- Color for inactive buffer. + -- }, } ins_left { @@ -195,7 +202,7 @@ ins_left { return msg end, icon = ' LSP:', - color = { fg = colors.darkblue }, + color = { fg = colors.cyan }, } ins_right { @@ -205,6 +212,12 @@ ins_right { } ins_right { + -- filesize component + 'filesize', + cond = conditions.buffer_not_empty, +} + +ins_right { 'branch', icon = '', color = { fg = colors.violet, gui = 'bold' }, |