dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 5d9b378f874c2a63a9f5e1c63fcd5d004fcd5748
parent 92ed94c0d26a28f4b731e947b63a0c893a0d9415
Author: Anders Damsgaard <andersd@riseup.net>
Date:   Mon, 27 Nov 2017 10:02:37 -0500

use \ for entering overwin mode

Diffstat:
Mlinks/.vim/keybinds.vim | 7++-----
1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/links/.vim/keybinds.vim b/links/.vim/keybinds.vim @@ -1,9 +1,5 @@ """ Keyboard shortcuts -" Formatting options are prefixed by backslash -nmap \A :set formatoptions+=a<CR>:echo "autowrap enabled"<CR> -nmap \a :set formatoptions-=a<CR>:echo "autowrap disabled"<CR> - " Save with ZX nmap ZX :w<CR> @@ -134,7 +130,8 @@ map <leader>j <Plug>(easymotion-j) map <leader>k <Plug>(easymotion-k) " <Leader><Leader>{char}{char} to move to {char}{char} -nmap s <Plug>(easymotion-overwin-f2) +nmap <leader><leader> <Plug>(easymotion-overwin-f2) +nmap \ <Plug>(easymotion-overwin-f2) " Disable arrow keys map <Left> <Nop>