Skip to content

Commit

Permalink
Updated tabline
Browse files Browse the repository at this point in the history
  • Loading branch information
wolandark committed Jun 27, 2024
1 parent 327acf8 commit 0a02a48
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions wim-vim
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down

0 comments on commit 0a02a48

Please sign in to comment.