[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 signcolumn=yes
set laststatus=3
" .config/nvim/lua/init.lua
lua require('init')

View File

@ -49,16 +49,7 @@ status_components.active[1][1] = {
icon = ''
}
status_components.active[3][1] = {
provider = 'word_count'
}
status_components.active[3][2] = {
provider = 'position'
}
status_components.active[3][3] = {
provider = 'line_percentage',
hl = {
fg = 'blue',
},
provider = 'battery',
left_sep = {
str = 'block'
},
@ -66,8 +57,23 @@ status_components.active[3][3] = {
str = 'block'
}
}
status_components.active[3][4] = {
provider = 'scroll_bar'
status_components.active[3][2] = {
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 = {
time = function()
@ -185,16 +191,17 @@ win_components.active[3][4] = {
right_sep = 'right_rounded'
}
win_components.active[3][5] = {
provider = 'battery',
left_sep = {
str = 'block'
},
right_sep = {
str = 'block'
}
provider = 'word_count',
left_sep = 'block'
}
win_components.active[3][6] = {
provider = 'date',
provider = 'position'
}
win_components.active[3][7] = {
provider = 'line_percentage',
hl = {
fg = 'blue',
},
left_sep = {
str = 'block'
},
@ -202,14 +209,8 @@ win_components.active[3][6] = {
str = 'block'
}
}
win_components.active[3][7] = {
provider = 'time',
left_sep = {
str = 'block'
},
right_sep = {
str = 'block'
}
win_components.active[3][8] = {
provider = 'scroll_bar'
}
win_config.components = win_components
require('feline').winbar.setup(win_config)