mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
6 lines
188 B
VimL
6 lines
188 B
VimL
|
|
function! GitStatus()
|
|
let l:branchname = system("git rev-parse --abbrev-ref HEAD 2>/dev/null | tr -d '\n'")
|
|
return strlen(l:branchname) > 0?'branch:'.l:branchname.' ':''
|
|
endfunction
|
|
|