diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-01-07 21:10:43 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-01-07 21:10:43 +0100 |
| commit | 3ce48c4323f38d3b61a08e7e2add5543adabe5d7 (patch) | |
| tree | 5957d5d5ba9c0668da586de6818e7217d76e329a /qutebrowser/config.py | |
| parent | fe6427c21f74b2dab0a5c73dc1ac029d80f4cdff (diff) | |
| download | dotfiles-3ce48c4323f38d3b61a08e7e2add5543adabe5d7.tar.gz dotfiles-3ce48c4323f38d3b61a08e7e2add5543adabe5d7.tar.bz2 dotfiles-3ce48c4323f38d3b61a08e7e2add5543adabe5d7.zip | |
Added vim Goyo plugin, changed default browser to qutebrowser, Added keybinding to go to next/prev element of command completion in qutebrowser
Diffstat (limited to 'qutebrowser/config.py')
| -rw-r--r-- | qutebrowser/config.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/qutebrowser/config.py b/qutebrowser/config.py index ce83c37..6ab0895 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -30,7 +30,7 @@ c.fonts.hints = 'bold 11pt default_family' c.hints.chars = 'asdfghjkl;' -c.statusbar.show = 'in-mode' +# c.statusbar.show = 'in-mode' c.editor.command = [ '/usr/local/bin/st', '-e', @@ -39,8 +39,13 @@ c.editor.command = [ c.messages.timeout = 4000 -config.bind('v', 'hint links spawn /usr/bin/mpv {hint-url}') +config.bind(';v', 'hint links spawn /usr/bin/mpv {hint-url} ;;' + 'message-info "opening in video player"') +config.bind('<Ctrl-J>', 'completion-item-focus next', 'command') +config.bind('<Ctrl-K>', 'completion-item-focus prev', 'command') + +# c.content.proxy = 'socks://localhost:9050/' # base16-qutebrowser (https://github.com/theova/base16-qutebrowser) # Base16 qutebrowser template by theova |
