diff --git a/nvim/init.vim b/nvim/init.vim index 88f0812..374fbf8 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -54,5 +54,7 @@ set noshowmode set updatetime=100 set signcolumn=yes +set laststatus=3 + " .config/nvim/lua/init.lua lua require('init') diff --git a/nvim/lua/plugins/feline.lua b/nvim/lua/plugins/feline.lua index db20359..35e7ed3 100644 --- a/nvim/lua/plugins/feline.lua +++ b/nvim/lua/plugins/feline.lua @@ -49,25 +49,31 @@ 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' }, - right_sep = { + right_sep = { 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,31 +191,26 @@ 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', - left_sep = { - str = 'block' - }, - right_sep = { - str = 'block' - } + provider = 'position' } win_components.active[3][7] = { - provider = 'time', + provider = 'line_percentage', + hl = { + fg = 'blue', + }, left_sep = { str = 'block' }, - right_sep = { + right_sep = { str = 'block' - } + } +} +win_components.active[3][8] = { + provider = 'scroll_bar' } win_config.components = win_components require('feline').winbar.setup(win_config)