diff options
Diffstat (limited to 'lua')
-rw-r--r-- | lua/lualinesetup.lua | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lua/lualinesetup.lua b/lua/lualinesetup.lua index 16e0cce..b324f39 100644 --- a/lua/lualinesetup.lua +++ b/lua/lualinesetup.lua @@ -19,8 +19,8 @@ end local config = { options = { theme = 'meltdown', - component_separators = '‣', -- '┃' - section_separators = '', + component_separators = '', -- '┃' + section_separators = {left = '', right = ''}, }, sections = { lualine_a = { 'mode' }, @@ -29,12 +29,17 @@ local config = { -- right lualine_x = { + -- { clients_lsp, color = { fg = '#80a0ff' } }, + -- { 'encoding', color = { fg = '#80a0ff' } }, + -- { 'fileformat', color = { fg = '#ffb700' } }, + -- { 'filetype', color = { fg = '#80a0ff' } }, + }, + lualine_y = { { clients_lsp, color = { fg = '#80a0ff' } }, { 'encoding', color = { fg = '#80a0ff' } }, { 'fileformat', color = { fg = '#ffb700' } }, { 'filetype', color = { fg = '#80a0ff' } }, - }, - lualine_y = { 'progress' }, + 'progress' }, lualine_z = { 'location' } }, } |