Skip to content

Instantly share code, notes, and snippets.

@halfdan
Created August 18, 2020 13:26
Show Gist options
  • Save halfdan/3ffe033149a016a34660c3bbbe785517 to your computer and use it in GitHub Desktop.
Save halfdan/3ffe033149a016a34660c3bbbe785517 to your computer and use it in GitHub Desktop.
Plug 'itchyny/lightline.vim'
let g:lightline = {
\ 'colorscheme': 'challenger_deep',
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ],
\ [ 'cocstatus', 'readonly', 'gitbranch', 'filename', 'modified' ] ]
\ },
\ 'component_function': {
\ 'cocstatus': 'coc#status',
\ 'gitbranch': 'FugitiveHead',
\ },
\ 'separator': { 'left': "\ue0b0", 'right': "\ue0b2" },
\ 'subseparator': { 'left': "\ue0b1", 'right': "\ue0b3" }
\ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment