0

Currently my vim set up with two vertical sessions/panes looks like this:

vim

I want to move those vim vertical scroll bars over to the middle of the Tmux pane so the vertical scroll bar & the edge of the tmux pane are identical. I take it something needs to be in my .vimrc to do that but I'm unsure of what.

To answer any of your follow up questions, yes I did draw those arrows myself.

Anthony
  • 15,435
  • 4
  • 39
  • 69
  • I'd suggest you take some time getting more comfortable with the basics before going plugin-crazy. *You* are the one whom added `set colorcolumn=XX` to your config, don't you? – romainl Jun 22 '14 at 19:51
  • @romainl I don't think OP is the one who set the `cc`. I guess he just copied some settings into his vimrc. or, again, some "vim distribution".. :-) – Kent Jun 22 '14 at 20:06
  • Can you tell me more about your setup? It looks great. – doremi Jun 23 '14 at 03:56

1 Answers1

2

Looking at your screenshot, I am pretty sure it is not "scrollbar"! It should be colorcolumn.

terminal vim has no scroll bars.

if you don't like the color column, you can disable it, by :set cc=""

To more detailed information about colorcolumn, :h 'cc'

Kent
  • 189,393
  • 32
  • 233
  • 301