dotfiles/nvim.configlink/settings/lightline.vim

15 lines
340 B
VimL
Raw Normal View History

2021-04-12 00:49:42 +00:00
" Lightline Status Bar
"---------------------
let g:lightline = {
\ 'colorscheme': 'jellybeans',
\ 'active': {
\ 'right': [[ 'lineinfo' ]],
\ 'left': [[ 'mode', 'paste' ],
2021-05-13 12:50:36 +00:00
\ [ 'readonly', 'relativepath', 'gitbranch', 'modified' ]]
2021-04-12 00:49:42 +00:00
\ },
\ 'component_function': {
2021-05-13 12:50:36 +00:00
\ 'gitbranch': 'fugitive#head'
2021-04-12 00:49:42 +00:00
\ },
\ }