├── autoload └── fugitive.vim ├── doc └── fugitive.txt ├── ftdetect └── fugitive.vim ├── ftplugin └── fugitiveblame.vim ├── plugin └── fugitive.vim └── syntax ├── fugitive.vim └── fugitiveblame.vim /autoload/fugitive.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpope/vim-fugitive/HEAD/autoload/fugitive.vim -------------------------------------------------------------------------------- /doc/fugitive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpope/vim-fugitive/HEAD/doc/fugitive.txt -------------------------------------------------------------------------------- /ftdetect/fugitive.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpope/vim-fugitive/HEAD/ftdetect/fugitive.vim -------------------------------------------------------------------------------- /ftplugin/fugitiveblame.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpope/vim-fugitive/HEAD/ftplugin/fugitiveblame.vim -------------------------------------------------------------------------------- /plugin/fugitive.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpope/vim-fugitive/HEAD/plugin/fugitive.vim -------------------------------------------------------------------------------- /syntax/fugitive.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpope/vim-fugitive/HEAD/syntax/fugitive.vim -------------------------------------------------------------------------------- /syntax/fugitiveblame.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpope/vim-fugitive/HEAD/syntax/fugitiveblame.vim --------------------------------------------------------------------------------