From 0b76cff0d313a94e9f032ce5410b2e0da5a80440 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Mon, 30 Nov 2020 15:57:24 -0500 Subject: [PATCH] Reverse the % and line/column order since the % potentially takes up much less space --- vim/config/plugins/lightline.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/config/plugins/lightline.vim b/vim/config/plugins/lightline.vim index 0667904..6a5bbf4 100644 --- a/vim/config/plugins/lightline.vim +++ b/vim/config/plugins/lightline.vim @@ -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)