dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

commit d4e0b141785bb414dc39a034fa78772037acf892
parent 5ec14bd7767fa7867a036cb520672f91034aa833
Author: pyratebeard <root@pyratebeard.net>
Date:   Thu,  7 May 2020 13:35:25 +0100

fugitive fix

Diffstat:
Mvim/.vimrc | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vim/.vimrc b/vim/.vimrc @@ -242,8 +242,8 @@ augroup end endfunction function! WizGit() - if &ft !~? 'help\|vimfiler' && exists("*fugitive#head") - return fugitive#head() + if &ft !~? 'help\|vimfiler' && exists("*FugitiveHead") + return FugitiveHead() endif return '' endfunction