diff options
author | Teddy Wing | 2015-07-14 11:40:22 -0400 |
---|---|---|
committer | Teddy Wing | 2015-07-14 11:40:22 -0400 |
commit | 3171a3a06e0b44770d7e37b97e582ab96a200757 (patch) | |
tree | 603355023c9be57b8e5304ce926d4dd6638cf301 /vimrc | |
parent | 262f9d5690929b1064a221becebf14328ea97efe (diff) | |
download | dotvim-3171a3a06e0b44770d7e37b97e582ab96a200757.tar.bz2 |
vimrc: Set `splitright`
Open new vertical splits to the right of the current window because I
often end up moving my newly-opened split to the right anyway. Makes
sense to have Vim do it for me and save a few keystrokes.
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -314,6 +314,9 @@ " * Update pick mappings to be more comfortable now that I've freed " <leader>d. " +" 2015.07.14: +" * Turn on splitright +" " Pathogen @@ -361,6 +364,8 @@ set grepprg=ack " Use ack instead of grep set ignorecase " Case insensitive set smartcase " Case insensitive unless an uppercase character is entered +set splitright " Open vertical splits to the right of the current window + " Don't persist options & mappings in saved sessions set sessionoptions-=options |