diff options
| author | Chris <[email protected]> | 2020-11-04 20:06:49 -0500 | 
|---|---|---|
| committer | Chris <[email protected]> | 2020-11-04 20:06:49 -0500 | 
| commit | c9503e3628154900a02221c180d635e99bb8489c (patch) | |
| tree | 99b653df9b853807df8836227780373b6b1c1f74 | |
| parent | 0ab1d7ca9b445af81ec366bc8cc4383b5af90c56 (diff) | |
elite mode option off
| -rw-r--r-- | keys/mappings.vim | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/keys/mappings.vim b/keys/mappings.vim index 36e8b2bd..f5c471cd 100644 --- a/keys/mappings.vim +++ b/keys/mappings.vim @@ -81,13 +81,13 @@ else    nnoremap <silent> <C-Left>  :vertical resize -2<CR>    nnoremap <silent> <C-Right> :vertical resize +2<CR> -  let g:elite_mode=1                      " Disable arrows" +  let g:elite_mode=0                      " Disable arrows"    " Disable arrow movement, resize splits instead.    if get(g:, 'elite_mode') -      nnoremap <silent> <C-Up>    :resize -2<CR> -      nnoremap <silent> <C-Down>  :resize +2<CR> -      nnoremap <silent> <C-Left>  :vertical resize -2<CR> -      nnoremap <silent> <C-Right> :vertical resize +2<CR> +      nnoremap <C-Up>    :resize -2<CR> +      nnoremap <C-Down>  :resize +2<CR> +      nnoremap <C-Left>  :vertical resize -2<CR> +      nnoremap <C-Right> :vertical resize +2<CR>    endif  endif | 
