Browse Source

Added default window split settings instead handling it in the key map.

Drew 12 years ago
parent
commit
3628ebcdf6
1 changed files with 4 additions and 1 deletions
  1. 4 1
      vimrc

+ 4 - 1
vimrc

@@ -45,6 +45,9 @@ set autoread
 set timeout
 set timeout
 set ttimeoutlen=50
 set ttimeoutlen=50
 
 
+" New window split settings
+set splitright
+
 """""""""""""""""""""""""""""""""""""""""
 """""""""""""""""""""""""""""""""""""""""
 " Keybinds
 " Keybinds
 """""""""""""""""""""""""""""""""""""""""
 """""""""""""""""""""""""""""""""""""""""
@@ -103,7 +106,7 @@ inoremap <C-d> <C-o>:yank<CR><C-o>:put<CR>
 " Open new files in new buffer or new windows
 " Open new files in new buffer or new windows
 nnoremap <C-o> :e<space>
 nnoremap <C-o> :e<space>
 nnoremap <C-p> :sp<space>
 nnoremap <C-p> :sp<space>
-nnoremap <A-p> :rightb vs<space>
+nnoremap <A-p> :vs<space>
 
 
 " Move lines of text via Alt+[jk] (Like sublime!)
 " Move lines of text via Alt+[jk] (Like sublime!)
 nnoremap <A-j> :m+1<CR>==
 nnoremap <A-j> :m+1<CR>==