Mercurial > dotfiles
diff qutebrowser/config.py @ 470:3b9394a0a58b
Add qutebrowser config.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 09 Apr 2019 18:58:39 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/qutebrowser/config.py Tue Apr 09 18:58:39 2019 -0700 @@ -0,0 +1,16 @@ +# Use numbers so I can type link text to filter things down. +c.hints.mode = 'number' + +# Support Ctrl-clicking links when I feel like using the mouse. +c.tabs.background = True +# Clear last tab when close it. +c.tabs.last_close = 'blank' + +# Use `b` to quickly jumb to a different tab. +config.bind('b', 'set-cmd-text -s :buffer') +# Correct way to navigate left/right between tabs! +config.bind('J', 'tab-prev') +config.bind('K', 'tab-next') +# Reorder tabs easily. +config.bind('<', 'tab-move -') +config.bind('>', 'tab-move +')