Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. inoremap jj <ESC>
  2.  
  3. clear Lock
  4. keycode 0x42 = Escape
  5.  
  6. if [ -s ~/.Xmodmap ]; then
  7. xmodmap ~/.Xmodmap
  8. fi
  9.  
  10. inoremap jk <esc>
  11. inoremap kj <esc>
  12.  
  13. :map! ;l ^[
  14. :vmap ;l ^[
  15.  
  16. Plug "zhou13/vim-easyescape"
  17. let g:easyescape_chars = { "j": 1, "k": 1 }
  18. let g:easyescape_timeout = 100
  19. cnoremap jk <ESC>
  20. cnoremap kj <ESC>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement