citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

.vimperatorrc (897B)


      1 "3.10.1 (created: 2015/08/25 00:41:59)
      2 
      3 map wo :tabonly<Return>
      4 noremap d <C-d>
      5 noremap u <C-u>
      6 noremap <C-u> u
      7 noremap <C-1> 1gt
      8 noremap <C-2> 2gt
      9 noremap <C-3> 3gt
     10 noremap <C-4> 4gt
     11 noremap <C-5> 5gt
     12 noremap <C-6> 6gt
     13 noremap <C-7> 7gt
     14 noremap <C-8> 8gt
     15 noremap <C-9> 9gt
     16 
     17 autocmd LocationChange .*                          js modes.passAllKeys = false
     18 autocmd LocationChange mail\\.google\\.com         js modes.passAllKeys = true
     19 autocmd LocationChange www\\.google\\.com/calendar js modes.passAllKeys = true
     20 autocmd LocationChange .*\\.slack\\.com            js modes.passAllKeys = true
     21 
     22 " auto-pin certain tabs
     23 autocmd PageLoad monstercat\\.slack\\.com js if(!getBrowser().mCurrentTab.pinned) getBrowser().pinTab(getBrowser().mCurrentTab);
     24 autocmd PageLoad mail\\.google\\.com js if(!getBrowser().mCurrentTab.pinned) getBrowser().pinTab(getBrowser().mCurrentTab);
     25 
     26 " vim: set ft=vimperator: