changeset 133:a9b32a49d0bd

Added Vimperator config file.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 01 Oct 2013 22:30:22 -0700
parents d190d7987730
children 70d3ec19bef2
files vimperatorrc
diffstat 1 files changed, 19 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vimperatorrc	Tue Oct 01 22:30:22 2013 -0700
@@ -0,0 +1,19 @@
+" Config for Vimperator
+
+" Scroll faster
+nnoremap h 3h
+nnoremap j 3j
+nnoremap k 3k
+nnoremap l 3l
+
+" Scroll easier
+nnoremap d <C-d>
+nnoremap e <C-u>
+
+" Close tab with `x` since `d` is for scrolling down now
+nnoremap x :bd<cr>
+
+" Change tabs without awkward `CTRL` combinations
+nnoremap J :tabprevious<cr>
+nnoremap K :tabnext<cr>
+