Created
August 6, 2022 12:21
-
-
Save uhooi/522ef604db1c26043265fadbdcb22650 to your computer and use it in GitHub Desktop.
Minimal gin vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax enable | |
filetype plugin indent on | |
set rtp+=~/temp/gin.vim | |
set rtp+=~/temp/denops.vim | |
set rtp+=~/temp/lightline.vim | |
let g:lightline = { | |
\ 'active': { | |
\ 'left': [ | |
\ [ 'gitbranch' ] | |
\ ] | |
\ }, | |
\ 'component_function': { | |
\ 'gitbranch': 'gin#component#branch#unicode', | |
\ }, | |
\} | |
autocmd User GinComponentPost call lightline#update() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment