Anthony
Anthony

Reputation: 15967

Resizing Vim Vertical Scroll Bars in Tmux

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.

Upvotes: 0

Views: 946

Answers (1)

Kent
Kent

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

Related Questions