forked from pvrego/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimperatorrc
47 lines (37 loc) · 1.02 KB
/
.vimperatorrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
""" VIMPERATOR Firefox plugin configuration
" see https://github.com/mashiro/dot-files/blob/master/.vimperatorrc
"colors darkness2
highlight Bell display: none;
""" What characters to use for labeling hints (f)
" Numbers only
"set hintchars=0123456789
" Home row
"set hintchars=hjklasdf
" Smart row
set hintchars=hjklasdfgyuiopqwertnmzxcvb
"set hintchars=hutenosa
" Define appearance of hints (CSS)
highlight Hint font-size:150%;color:black;background-color:yellow;padding:2px;
""" Default search engine
" Manage search engines with `:dialog searchengine`
"set defsearch=startpage
set defsearch=duckduckgo
""" General options
set complete=slS
set newtab=all
set popups=tab
set nohlsearch
set ignorecase
set incsearch
set smartcase
set focuscontent
set visualbell
set toolbars=noaddons,nobookmarks,nomenu,nonavigation,tabs
""" about:config
"set! general.autoScroll=false
"set! browser.tabs.closeButtons=2
"set! mousewheel.withnokey.numlines=6
""" Scrolling
nnoremap j 3j
nnoremap k 3k
" vim: ts=2 sw=2 sts=2 fdm=marker ft=vimperator