dotfiles/nvim.configlink/settings/lightline.vim

16 lines
386 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' ],
\ [ 'cocstatus', 'readonly', 'relativepath', 'gitbranch', 'modified' ]]
\ },
\ 'component_function': {
\ 'gitbranch': 'fugitive#head',
\ 'cocstatus': 'coc#status'
\ },
\ }