11 lines
347 B
VimL
11 lines
347 B
VimL
|
let g:lightline = {
|
||
|
\ 'colorscheme': 'wombat',
|
||
|
\ 'active': {
|
||
|
\ 'left': [ [ 'mode', 'paste' ],
|
||
|
\ [ 'gitbranch', 'readonly', 'relativepath', 'modified'] ]
|
||
|
\ },
|
||
|
\ 'component_function': {
|
||
|
\ 'gitbranch': 'FugitiveHead'
|
||
|
\ },
|
||
|
\ }
|