mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-11-08 03:23:46 -05:00
This can happen if g:loaded_fugitive is set to disable the plugin, or in a botched install.
8 lines
144 B
VimL
8 lines
144 B
VimL
if exists("b:current_syntax") || !exists("*FugitiveGitDir")
|
|
finish
|
|
endif
|
|
|
|
call fugitive#BlameSyntax()
|
|
|
|
let b:current_syntax = "fugitiveblame"
|