diff --git a/lua/plugins/statusline.lua b/lua/plugins/statusline.lua index 8e43ac6..be4194d 100644 --- a/lua/plugins/statusline.lua +++ b/lua/plugins/statusline.lua @@ -2,8 +2,8 @@ require 'lualine'.setup { options = { icons_enabled = true, theme = 'auto', - component_separators = { left = "", right = "|" }, - section_separators = "", + component_separators = "", + section_separators = " ", disabled_filetypes = {} }, sections = { @@ -15,7 +15,10 @@ require 'lualine'.setup { { 'filename', path = 1 }, 'diff', }, - lualine_x = { 'encoding', 'fileformat', 'filetype' }, + lualine_x = { 'encoding', 'fileformat', { + 'filetype', + icon_only = true + } }, lualine_y = { 'progress' }, lualine_z = { 'location' } }, @@ -27,14 +30,5 @@ require 'lualine'.setup { lualine_y = {}, lualine_z = {} }, - -- Tabline is broken, disable for now. - -- tabline = { - -- lualine_a = {'buffers'}, - -- lualine_b = {}, - -- lualine_c = {}, - -- lualine_x = {}, - -- lualine_y = {}, - -- lualine_z = {'tabs'} - -- }, extensions = {} }