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:
parent
6cd434f0a9
commit
cd9b06d987
1 changed files with 5 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue