mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-11-08 11:33:47 -05:00
This can happen if g:loaded_fugitive is set to disable the plugin, or in a botched install.
7 lines
127 B
VimL
7 lines
127 B
VimL
if exists("b:did_ftplugin") || !exists("*FugitiveGitDir")
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
call fugitive#BlameFileType()
|