[2024-05-22] Swapping right side of winbar and statusbar, set laststatus=3

This commit is contained in:
Andrew Conlin 2024-05-22 22:51:10 +01:00
parent 57d37b86e5
commit f2cda4463e
2 changed files with 35 additions and 32 deletions

View File

@ -54,5 +54,7 @@ set noshowmode
set updatetime=100 set updatetime=100
set signcolumn=yes set signcolumn=yes
set laststatus=3
" .config/nvim/lua/init.lua " .config/nvim/lua/init.lua
lua require('init') lua require('init')

View File

@ -49,25 +49,31 @@ status_components.active[1][1] = {
icon = '' icon = ''
} }
status_components.active[3][1] = { status_components.active[3][1] = {
provider = 'word_count' provider = 'battery',
}
status_components.active[3][2] = {
provider = 'position'
}
status_components.active[3][3] = {
provider = 'line_percentage',
hl = {
fg = 'blue',
},
left_sep = { left_sep = {
str = 'block' str = 'block'
}, },
right_sep = { right_sep = {
str = 'block' str = 'block'
} }
} }
status_components.active[3][4] = { status_components.active[3][2] = {
provider = 'scroll_bar' provider = 'date',
left_sep = {
str = 'block'
},
right_sep = {
str = 'block'
}
}
status_components.active[3][3] = {
provider = 'time',
left_sep = {
str = 'block'
},
right_sep = {
str = 'block'
}
} }
local custom_providers = { local custom_providers = {
time = function() time = function()
@ -185,31 +191,26 @@ win_components.active[3][4] = {
right_sep = 'right_rounded' right_sep = 'right_rounded'
} }
win_components.active[3][5] = { win_components.active[3][5] = {
provider = 'battery', provider = 'word_count',
left_sep = { left_sep = 'block'
str = 'block'
},
right_sep = {
str = 'block'
}
} }
win_components.active[3][6] = { win_components.active[3][6] = {
provider = 'date', provider = 'position'
left_sep = {
str = 'block'
},
right_sep = {
str = 'block'
}
} }
win_components.active[3][7] = { win_components.active[3][7] = {
provider = 'time', provider = 'line_percentage',
hl = {
fg = 'blue',
},
left_sep = { left_sep = {
str = 'block' str = 'block'
}, },
right_sep = { right_sep = {
str = 'block' str = 'block'
} }
}
win_components.active[3][8] = {
provider = 'scroll_bar'
} }
win_config.components = win_components win_config.components = win_components
require('feline').winbar.setup(win_config) require('feline').winbar.setup(win_config)