How to remove gVim's fat bottom border (and resize grip)?
My gVim has this annoying bottom border:
I wish it didn't and looked more like gnome-terminal for example:
Is there any way for gVim to look like that?
UPDATE: There is! Here's a screenshot after adding settings from Jeremy Cantrell's and my own answers:
Solution 1:
Ok so setting this in my .gtkrc-2.0
alleviates the problem:
style "vimfix" {
bg[NORMAL] = "#242424" # this matches my gvim theme 'Normal' bg color.
}
widget "vim-main-window.*GtkForm" style "vimfix"
Screenshot:
This still doesn't fix the resize triangle in the lower right.
Solution 2:
This is what I use to get rid of the resize handle in the corner. Just put this in ~/.gtkrc-2.0
style "no-resize-handle"
{
GtkWindow::resize-grip-height = 0
GtkWindow::resize-grip-width = 0
}
class "GtkWidget" style "no-resize-handle"