Mercurial > dotfiles
view vimperatorrc @ 137:c638bec5b663
Vimperator config changes.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 04 Oct 2013 22:04:42 -0700 |
parents | d38a489db202 |
children | 337a1bfbd50a |
line wrap: on
line source
" 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> "New tab using the old classic way nnoremap <C-t> :tabnew<cr> " Use `i` to get into a persistent insert mode, " and `I` for the quick one. nnoremap i <S-Esc> nnoremap I i " Super minimal UI set toolbars=noaddons,nobookmarks,nomenu,nonavigation,notabs " vim: ft=vim