From d4fba2bf155ad0f4529a3f7d8080f5c0f0cca076 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Wed, 2 Dec 2020 13:50:08 -0500 Subject: [PATCH] Swap the line info and percent back where they belong --- 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 90428ee..5e3fdab 100644 --- a/vim/config/plugins/lightline.vim +++ b/vim/config/plugins/lightline.vim @@ -93,7 +93,7 @@ let g:lightline = { \ \ 'active': { \ 'left': [[ 'mode', 'paste' ], [ 'fugitive', 'filename' ], [ 'tagbar' ]], - \ 'right': [[ 'linter_checking', 'linter_errors', 'linter_warnings', 'linter_ok' ], [ 'fileformat', 'fileencoding', 'filetype' ], [ 'lineinfo', 'percent' ]] + \ 'right': [[ 'linter_checking', 'linter_errors', 'linter_warnings', 'linter_ok' ], [ 'fileformat', 'fileencoding', 'filetype' ], [ 'percent', 'lineinfo' ]] \ } \ }