Remap vim keys for the sweep

main
zoomiti 4 years ago
parent 7189c077a5
commit ac9817530a

@ -57,6 +57,8 @@ let g:UltiSnipsJumpBackwardTrigger="<s-tab>"
" Fugitive Config " Fugitive Config
nnoremap <leader>gs :G<CR> nnoremap <leader>gs :G<CR>
nnoremap <Enter> :nohl<Enter><Enter>
set encoding=utf-8 set encoding=utf-8
set completeopt=menu,menuone,noselect set completeopt=menu,menuone,noselect
@ -110,6 +112,13 @@ set mouse=a " Enable mouse usage (all modes)
set number " Enable line numbers set number " Enable line numbers
set relativenumber " Enable relative line numbers set relativenumber " Enable relative line numbers
set title " Changes terminal title when started set title " Changes terminal title when started
set scrolloff=15
noremap ; l
noremap l k
noremap k j
noremap j h
" Terminal Settings " Terminal Settings
if has("nvim") if has("nvim")

@ -7,6 +7,11 @@
" ------------------------------------------------------------------------------ " ------------------------------------------------------------------------------
noremap ; l
noremap l k
noremap k j
noremap j h
" Command used to edit files in various contexts. The default is vim. " Command used to edit files in various contexts. The default is vim.
" If you would like to use another vi clone such as Elvis or Vile " If you would like to use another vi clone such as Elvis or Vile
" you will need to change this setting. " you will need to change this setting.

Loading…