2019-04-15 05:57:22 +00:00
|
|
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
2019-09-22 00:59:18 +00:00
|
|
|
"░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
|
|
"░▀█▀░█▀▄░▀█▀░█▀▄░█▀█░█▀▀░▀█▀░█░█░█░░░█▀▄░█▀▀░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
|
|
"░░█░░█▀▄░░█░░█░█░█▀█░█░░░░█░░░█░░█░░░█▀▄░█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
|
|
"░░▀░░▀░▀░▀▀▀░▀▀░░▀░▀░▀▀▀░░▀░░░▀░░▀▀▀░▀░▀░▀▀▀░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
|
|
"░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
|
|
"
|
2019-04-15 05:57:22 +00:00
|
|
|
|
|
|
|
" Toggle expand/collapse for comments.
|
|
|
|
bind ;c hint -c [class*="expand"],[class="togg"]
|
|
|
|
|
2019-09-22 00:59:18 +00:00
|
|
|
" match vimperators back/forward function.
|
2019-04-15 05:57:22 +00:00
|
|
|
command ba back
|
2019-04-18 02:23:04 +00:00
|
|
|
command fo foward
|
|
|
|
|
|
|
|
" restore bookmarks
|
|
|
|
unbind <C-b>
|
2019-04-15 05:57:22 +00:00
|
|
|
|
|
|
|
" use h/l to cycle though tabs.
|
|
|
|
bind h tabprev
|
|
|
|
bind l tabnext
|
|
|
|
|
|
|
|
" Better find.
|
|
|
|
unbind <C-f>
|
|
|
|
bind / fillcmdline find
|
|
|
|
bind ? fillcmdline find -?
|
|
|
|
bind n findnext 1
|
|
|
|
bind N findnext -1
|
|
|
|
bind ,<Space> nohlsearch
|
|
|
|
|
2019-09-22 00:59:18 +00:00
|
|
|
" Text to speech is broken on all of my firefox instances. I'll just use my
|
|
|
|
" own.
|
2019-09-21 19:04:38 +00:00
|
|
|
unbind ;r
|
|
|
|
bind ;r composite hint -pipe * textContent | shellescape | exclaim_quiet ./scripts/speak
|
2019-09-21 20:23:30 +00:00
|
|
|
|
2019-09-22 00:59:18 +00:00
|
|
|
" Settings
|
2019-09-21 20:23:30 +00:00
|
|
|
set smoothscroll true
|
|
|
|
set incsearch true
|
|
|
|
|
2019-09-22 00:59:18 +00:00
|
|
|
" Use custom theme
|
2019-09-21 19:03:20 +00:00
|
|
|
colorscheme onedark
|
2019-09-22 00:59:18 +00:00
|
|
|
|
2019-04-15 05:57:22 +00:00
|
|
|
" vim: set filetype=vim:
|