Last active
October 6, 2015 13:28
-
-
Save yymm/3000407 to your computer and use it in GitHub Desktop.
vimperator setting file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" vimperator setting | |
" vimp colorscheme ~/vimperator/colors | |
colorscheme yymm_sweets | |
" Title | |
set titlestring=Firefox | |
" detail = 5 lines | |
" set verbose=5 | |
" j,k * 3 | |
noremap j 3<C-e> | |
noremap k 3<C-y> | |
" h:1page back / l:1page return | |
noremap h <A-Left> | |
noremap l <A-Right> | |
" tabnew | |
noremap <silent> tn :<C-u>tabnew<CR> | |
" mybookmarks | |
map b :open about:mybookmarks<CR> | |
" gt gT -> J/K | |
noremap H gT | |
noremap L gt | |
"hint -> alphabet | |
set hintchars=asdfghjklzxcvbnm | |
" hint mode -> open newtab | |
"noremap f F | |
"noremap F f | |
" d -> Nop | |
noremap d <Nop> | |
" gh -> Nop | |
noremap gh <Nop> | |
" google search | |
map ,g :open<space>google<space> | |
map ,G :tabopen<space>google<space> | |
" tab-history | |
nnoremap < :tabh back<CR> | |
nnoremap > :tabh forward<CR> | |
" vimperator-copy.js | |
" http://www.serendip.ws/software/vimperator-copy | |
map ty :copyurl -t<CR> | |
map ry :copyurl -r<CR> | |
map my :copyurl -m<CR> | |
" no beep | |
set visualbell | |
highlight Bell display:none |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment