diff options
author | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-10-28 14:40:52 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-10-28 14:40:52 +0200 |
commit | 1f53c944155edf066335bbeca5a663c8e9c52fa3 (patch) | |
tree | 6b693676429d86347ac15e83a8cd4d9334f41336 /nvim | |
parent | beed5d88d61784ab0198e3ea41153f02dd02c291 (diff) |
[NeoVim] Splitbelow and splitright
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/nvim/init.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nvim/nvim/init.vim b/nvim/nvim/init.vim index d692d0f..2f4abd2 100644 --- a/nvim/nvim/init.vim +++ b/nvim/nvim/init.vim @@ -39,6 +39,10 @@ set list lcs=trail:·,tab:»· " Always show tabline (0=never, 1=when there are at least 2 tabs, 2=always) set showtabline=1 +" Split on the right in vertical and below in horizontal +set splitbelow +set splitright + " Explore configured to show tree let g:netrw_liststyle= 3 |