Hacker News new | ask | show | jobs
by Yoshino 4699 days ago
I turned them off completely. I found that the line numbers and file position in the status line was more than enough to get my bearings, and it looks nicer without the scrollbars.

In ~/.gvimrc:

  " no toolbar
  set go-=T
  " no right scrollbar
  set go-=r
  " no left scollbar
  set go-=L
2 comments

You can put those on one line...and I do the same. :)
Only if the order is the same. E.g.

  :set go=aAcegimtv
  :set go-=vtmigecAa
  :set go? " guioptions=aAcegimtv
You can do it like this, though:

  set go-=T go-=r go-=L
Interesting that the vim docs say nothing of order.
nice! thank you