Mercurial > dotfiles
view vimperatorrc @ 146:95af793b6e9a
Updated sub-repos.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 20 Nov 2013 20:24:12 -0800 |
parents | d94d6766fc9e |
children | 71ff712a6951 |
line wrap: on
line source
" Config for Vimperator let mapleader="," " 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 " Shortcuts for common extensions nnoremap <leader>f i<D-\> nnoremap <leader>p <S-Esc><A-D-\> nnoremap <leader>b I<A-b> " Quickly hide search highlighting nnoremap <leader><Space> :noh<cr> " Super minimal UI set toolbars=noaddons,nobookmarks,nomenu,nonavigation,notabs " vim: ft=vim