mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 07:32:55 +00:00
15 lines
340 B
VimL
15 lines
340 B
VimL
" Lightline Status Bar
|
|
"---------------------
|
|
|
|
let g:lightline = {
|
|
\ 'colorscheme': 'jellybeans',
|
|
\ 'active': {
|
|
\ 'right': [[ 'lineinfo' ]],
|
|
\ 'left': [[ 'mode', 'paste' ],
|
|
\ [ 'readonly', 'relativepath', 'gitbranch', 'modified' ]]
|
|
\ },
|
|
\ 'component_function': {
|
|
\ 'gitbranch': 'fugitive#head'
|
|
\ },
|
|
\ }
|