dotfiles/tridactyl/tridactylrc

44 lines
1.9 KiB
Plaintext
Raw Normal View History

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
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.
unbind ;r
bind ;r composite hint -pipe * textContent | shellescape | exclaim_quiet ./scripts/speak
2019-09-22 00:59:18 +00:00
" Settings
set smoothscroll true
set incsearch true
2019-09-22 00:59:18 +00:00
" Use custom theme
colorscheme onedark
2019-09-22 00:59:18 +00:00
2019-04-15 05:57:22 +00:00
" vim: set filetype=vim: