fix(vim): ensure new split are make in the correct direction

vsplit  This is created to the right of the current window
split   This is made below the current window
This commit is contained in:
Ade Attwood 2022-09-08 20:39:10 +01:00
parent 6cd434f0a9
commit cd9b06d987

View file

@ -16,6 +16,11 @@ set scrolloff=20
" Using the mouse
set mouse=a
" Ensure `split` is made below and `vsplit` are make to the right of the
" current window
set splitright
set splitbelow
" Tabs and indenting
set tabstop=4
set shiftwidth=4