Starting vim-fugitive from command line

git, vim, vim-fugitive

Solution

`vim +Gstatus +only` works. I have it aliased to `vimg`

Problem

I really like Fugitive (VIM git wrapper plugin) However I would like to create a script that starts vim and then runs ``` :Gstatus ``` immediately. However when I try ``` vim -c Gstatus ``` I get an error stating that Gstatus is not an editor command

Original source