itchyny/lightline.vim

disable showing line number on the right

nikinbaidar opened this issue · 2 comments

At the right most part of the statusline it shows " L : C" (L being the line on which I am and C is the column). How can I set this to just show "C"?

let g:lightline = {
      \ 'component': {
      \   'lineinfo': '%-2c',
      \ },
      \ }

Thank you!