diff --git a/wim-vim b/wim-vim index 9122622..c550e51 100644 --- a/wim-vim +++ b/wim-vim @@ -207,19 +207,25 @@ let g:netrw_keepdir=0 "===[ Lightline Statusbar ]===" let g:lightline = { - \ 'colorscheme': 'catppuccin_mocha', - \ 'active': { - \ 'right': [ [ 'lineinfo' ], [ 'percent' ], [ 'filetype' ], [ 'bufname' ] ], - \ 'left': [ [ 'mode' ], [ 'readonly' ], [ 'absolutepath' ], [ 'modified' ], [ 'gitbranch' ] ], - \ }, - \ 'component_function': { - \ 'gitbranch': 'FugitiveHead', - \ }, - \ 'component': { - \ 'charvaluehex': '0x%B', - \ 'lineinfo': '%l\%L', - \ } - \ } + \ 'colorscheme': 'catppuccin_mocha', + \ 'active': { + \ 'right': [ [ 'lineinfo' ], [ 'percent' ], [ 'filetype' ], ['syntaxitem'], ['bufnum' ] ], + \ 'left': [ [ 'mode' ], [ 'readonly' ], [ 'absolutepath' ], [ 'modified' ], [ 'gitbranch' ] ], + \ }, + \ 'component_function': { + \ 'gitbranch': 'FugitiveHead', + \ }, + \ 'component': { + \ 'charvaluehex': '0x%B', + \ 'lineinfo': '%l\%L', + \ }, + \ 'component_expand': { + \ 'buffers': 'lightline#bufferline#buffers' + \ }, + \ 'component_type': { + \ 'buffers': 'tabsel' + \ } + \ } let g:lightline.separator={ 'left': "\ue0b0", 'right': "\ue0b2" } let g:lightline.subseparator={ 'left': "\ue0b1", 'right': "\ue0b3" }