options 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. # Vimium
  2. # ======
  3. # Key Mappings
  4. # ------------
  5. unmap ^
  6. map \ visitPreviousTab
  7. unmap <a-p>
  8. map <c-p> togglePinTab
  9. unmap <<
  10. unmap >>
  11. map < moveTabLeft
  12. map > moveTabRight
  13. unmap <a-f>
  14. map R LinkHints.activateModeWithQueue
  15. unmap H
  16. unmap L
  17. unmap h
  18. unmap l
  19. map H scrollLeft
  20. map L scrollRight
  21. map h previousTab
  22. map l nextTab
  23. map , goBack
  24. map . goForward
  25. unmap J
  26. unmap K
  27. unmap gt
  28. unmap gT
  29. map J scrollFullPageDown
  30. map K scrollFullPageUp
  31. unmap <c-e>
  32. unmap <c-y>
  33. unmap t
  34. unmap T
  35. unmap O
  36. unmap ge
  37. unmap gE
  38. map <c-t> createTab
  39. map O Vomnibar.activateEditUrl
  40. map t Vomnibar.activateInNewTab
  41. map T Vomnibar.activateEditUrlInNewTab
  42. map s Vomnibar.activateTabSelection
  43. unmap zH
  44. unmap zL
  45. map zh scrollToLeft
  46. map zl scrollToRight
  47. unmap gf
  48. unmap gF
  49. map gn nextFrame
  50. map gm mainFrame
  51. unmap g0
  52. unmap g$
  53. map gh firstTab
  54. map gl lastTab
  55. unmap X
  56. map U restoreTab
  57. # Search Engines
  58. # --------------
  59. w: http://www.wikipedia.org/w/index.php?title=Special:Search&search=%s Wikipedia
  60. g: http://www.google.com/search?q=%s Google
  61. y: http://www.youtube.com/results?search_query=%s Youtube
  62. gm: https://www.google.com/maps?q=%s Google maps
  63. b: https://www.bing.com/search?q=%s Bing
  64. d: https://duckduckgo.com/?q=%s DuckDuckGo
  65. gh: https://github.com/search?&q=%s GitHub
  66. # Link Hints Characters
  67. # ---------------------
  68. jkdflsahg
  69. # Miscellaneous Options
  70. # ---------------------
  71. [x] Use smooth scrolling
  72. [x] Don't let pages steal focus on load
  73. # New Tab URL
  74. # ===========
  75. https://www.google.com
  76. # Wasavi
  77. # ======
  78. Uncheck open home page on update.
  79. # Stylish
  80. # =======
  81. Fix GitHub monospace font:
  82. URLS on the domain github.com
  83. ```css
  84. .pre,
  85. pre,
  86. .code,
  87. code,
  88. .blob-code,
  89. .blob-code-inner,
  90. .blob-num,
  91. .sha-block,
  92. .commit-tease-sha,
  93. .commit-ref,
  94. .file-info {
  95. font-family: monospace !important;
  96. font-size: 16px !important;
  97. }
  98. body,
  99. input,
  100. select,
  101. textarea,
  102. button,
  103. .markdown-body,
  104. h2,
  105. .number,
  106. #last-update,
  107. .blog-content,
  108. .intgrs-page .main-content {
  109. font-family: sans-serif !important;
  110. }
  111. ```