mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
Reverse the % and line/column order since the % potentially takes up much less space
This commit is contained in:
parent
7dc4a48a2c
commit
0b76cff0d3
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ let g:lightline.component = {
|
|||
|
||||
let g:lightline.active = {
|
||||
\ 'left': [[ 'mode', 'paste' ], [ 'fugitive', 'filename' ], [ 'tagbar' ]],
|
||||
\ 'right': [[ 'linter_checking', 'linter_errors', 'linter_warnings', 'linter_ok' ], [ 'fileformat', 'fileencoding', 'filetype' ], [ 'percent', 'lineinfo' ]]
|
||||
\ 'right': [[ 'linter_checking', 'linter_errors', 'linter_warnings', 'linter_ok' ], [ 'fileformat', 'fileencoding', 'filetype' ], [ 'lineinfo', 'percent' ]]
|
||||
\ }
|
||||
|
||||
"status bar config with and without powerline fonts (default: 0)
|
||||
|
|
Loading…
Reference in a new issue