Change position of Git Fugitive window
When I used Fugitive for the last time the :Gstatus window would open at the top. In Spf13 Vim the window opens at the bottom.
How to tell Fugitive to open the window at the top instead of the bottom?
Just put 'set splitbelow' in your rc file ;)
And can I put Gstatus window on vary bottom when I call it? I always split 3 winodws (top left, top right and bottom). If I call Gstatus on top left window, it would split against to top left window (1). I want it be locate to vary bottom(2) no matter which window I was in.
(1) Call Gstatus on top left window

(2) What I want

+1 I would also like to have this functionality in the plugin.
As a work around you can add some mapping that moves the window all the way down:
map <leader>gst :Gst<cr><c-w>J
or this to make it appear on top:
map <leader>gst :Gst<cr><c-w>K