Mercurial > dotfiles
comparison vimperatorrc @ 133:a9b32a49d0bd
Added Vimperator config file.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 01 Oct 2013 22:30:22 -0700 |
parents | |
children | d38a489db202 |
comparison
equal
deleted
inserted
replaced
132:d190d7987730 | 133:a9b32a49d0bd |
---|---|
1 " Config for Vimperator | |
2 | |
3 " Scroll faster | |
4 nnoremap h 3h | |
5 nnoremap j 3j | |
6 nnoremap k 3k | |
7 nnoremap l 3l | |
8 | |
9 " Scroll easier | |
10 nnoremap d <C-d> | |
11 nnoremap e <C-u> | |
12 | |
13 " Close tab with `x` since `d` is for scrolling down now | |
14 nnoremap x :bd<cr> | |
15 | |
16 " Change tabs without awkward `CTRL` combinations | |
17 nnoremap J :tabprevious<cr> | |
18 nnoremap K :tabnext<cr> | |
19 |