dotfiles/nvim.configlink/settings/lightline.vim
2021-05-13 09:18:20 -04:00

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'
\ },
\ }