commit 8448a8ca4840885151804162f4708dadc34b9d5d parent 6bdc10529ed678fadf708694525bf4737fe35be0 Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Tue, 7 May 2019 08:39:04 -0700 Remove lineno indicator from status line Diffstat:
M | .vim/plugin/appearance.vim | | | 6 | +----- |
M | .vim/plugins.vim | | | 1 | - |
2 files changed, 1 insertion(+), 6 deletions(-)
diff --git a/.vim/plugin/appearance.vim b/.vim/plugin/appearance.vim @@ -114,11 +114,7 @@ augroup StatuslineConfig set statusline+=%6*%{StatuslineLinterErrors()}%4* " ALE errors set statusline+=%{StatuslineLinterOK()} " ALE ok endif - set statusline+=%2* " set User2 color - if &rtp =~ 'vim-line-no-indicator' - set statusline+=\ %{LineNoIndicator()}\ " show position w. single char - endif set statusline+=%3* " set User3 color - set statusline+=\%2l:%-2c\ " line and column view + set statusline+=\ %2l:%-2c\ " line and column view augroup END diff --git a/.vim/plugins.vim b/.vim/plugins.vim @@ -6,7 +6,6 @@ call plug#begin('~/.vim/vim-plugs') " Specify a directory for plugins Plug 'tpope/vim-unimpaired' " nav. errors with ]q, newlines with ]spc """"" Appearance """""" -Plug 'drzel/vim-line-no-indicator' " show current line with single character Plug 'Yggdroot/indentLine' " show indentation level with vertical lines """""" File system """""""