diff options
author | katherine <shmibs@shmibbles.me> | 2017-12-22 13:17:09 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2017-12-22 13:17:09 -0700 |
commit | b995f743278168542adf819bb855695f45c60cd4 (patch) | |
tree | 0fe82d1bf04343312e7a426c814f821a577f1c3a | |
parent | 73edc77ee2a424afd3a8d286ad8bfbbafd1e26b2 (diff) | |
download | dotfiles-b995f743278168542adf819bb855695f45c60cd4.tar.gz |
remove statusline clutter
not completely useless, but get in the way on small terms
-rw-r--r-- | .vimrc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -99,7 +99,12 @@ function! s:Lightline_palette_init() let l:p.normal.warning = [ [ l:white, l:yellow ] ] let g:lightline#colorscheme#shmibs#palette = lightline#colorscheme#flatten(l:p) - let g:lightline = { 'colorscheme': 'shmibs' } + let g:lightline = { + \ 'active': { + \ 'right': [ [ 'lineinfo' ], + \ [ 'percent' ], + \ [ 'filetype' ] ] + \ }, 'colorscheme': 'shmibs' } endfunction call s:Lightline_palette_init() |