Skip to content

Instantly share code, notes, and snippets.

@xbot
Last active June 22, 2017 13:37
Show Gist options
  • Save xbot/9597077 to your computer and use it in GitHub Desktop.
Save xbot/9597077 to your computer and use it in GitHub Desktop.
gtkrc-2.0.mine for vim fixes
# fix for gvim border
style "vim-fix" {
bg[NORMAL] = "#002B36" # this matches my gvim theme 'Normal' bg color.
fg[NORMAL] = "#ffffff"
}
style "vim-fix-tabs" {
bg[NORMAL] = shade(1.02, "#656565")
bg[ACTIVE] = shade(1.25, "#878787")
fg[ACTIVE] = "#323232"
ythickness = 0 # make tabs small enough to be eye candy
}
widget "vim-main-window*" style "vim-fix"
widget "vim-main-window.*.GtkNotebook*" style "vim-fix-tabs"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment