17 lines
711 B
VimL
17 lines
711 B
VimL
" ==================================================
|
|
" lightline
|
|
" ==================================================
|
|
let g:lightline = { 'colorscheme': 'material_vim' }
|
|
|
|
let g:lightline.active = {
|
|
\ 'left': [ [ 'mode', 'paste' ], [ 'readonly', 'filename','gitbranch', 'modified', 'neospinner'] ],
|
|
\ 'right': [ [ 'lineinfo' ], [ 'percent', 'wordcount', 'charcount' ], [ 'fileformat', 'fileencoding', 'filetype', 'charvaluehex' ] ]
|
|
\ }
|
|
let g:lightline.component = {
|
|
\ 'charvaluehex': '0x%B',
|
|
\ 'readonly': '%{&readonly?"⭤":""}'
|
|
\ }
|
|
let g:lightline.colorscheme = 'palenight'
|
|
|
|
" vim:set et sw=2:
|