Skip to content

Commit

Permalink
update bubles example config
Browse files Browse the repository at this point in the history
  • Loading branch information
shadmansaleh committed Mar 4, 2024
1 parent 7d131a8 commit 28027a5
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions examples/bubbles.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ local bubbles_theme = {
normal = {
a = { fg = colors.black, bg = colors.violet },
b = { fg = colors.white, bg = colors.grey },
c = { fg = colors.black, bg = colors.black },
c = { fg = colors.white },
},

insert = { a = { fg = colors.black, bg = colors.blue } },
Expand All @@ -27,22 +27,20 @@ local bubbles_theme = {
inactive = {
a = { fg = colors.white, bg = colors.black },
b = { fg = colors.white, bg = colors.black },
c = { fg = colors.black, bg = colors.black },
c = { fg = colors.white },
},
}

require('lualine').setup {
options = {
theme = bubbles_theme,
component_separators = '|',
component_separators = '',
section_separators = { left = '', right = '' },
},
sections = {
lualine_a = {
{ 'mode', separator = { left = '' }, right_padding = 2 },
},
lualine_a = { { 'mode', separator = { left = '' }, right_padding = 2 }, },
lualine_b = { 'filename', 'branch' },
lualine_c = { 'fileformat' },
lualine_c = {'%=', --[[ add your center compoentnts here in place of this comment ]]},
lualine_x = {},
lualine_y = { 'filetype', 'progress' },
lualine_z = {
Expand Down

0 comments on commit 28027a5

Please sign in to comment.