123456789101112131415161718192021222324252627282930 |
- " set guioptions=rbT
- set hinttimeout=500
- set incfind
- set hlfind
- set maxitems=20
- set newtab=all
- set runtimepath=~/.config/pentadactyl
- set novisualbell
- set hintinputs+=name
- set wildmode=list:longest,full
- set hintkeys=qwertyuiopasdfghjklzxcvbnm
- hi -a Hint font-size: 10pt !important;
- set passunknown=base
- set verbose=0
- " don't show autocomplete list until <Tab>
- set autocomplete=
- " Faster Scrolling
- map -b j 4j
- map -b k 4k
- map -b h 4h
- map -b l 4l
- " history
- map -b J <C-n>
- map -b K <C-p>
- map ,m :execute "!mpv " + content.location<CR>
|