Reputation: 15967
Currently my vim set up with two vertical sessions/panes looks like this:
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.
Upvotes: 0
Views: 946
Reputation: 195229
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'
Upvotes: 2