citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit 926991c0be453619f142362767ce758b686ab0f5
parent 1e58079ed842b5bf4b431965b39e5de501311785
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 28 Jun 2021 07:22:27 -0700

qutebrowser: zoom defaults

Diffstat:
Mdotfiles/.config/qutebrowser/config.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dotfiles/.config/qutebrowser/config.py b/dotfiles/.config/qutebrowser/config.py @@ -30,7 +30,7 @@ config.set('content.javascript.enabled', True, 'qute://*/*') config.set('fonts.default_family', 'terminus') if hostname == 'quiver': - config.set('zoom.default', 125) + config.set('zoom.default', 150) # Editor (and arguments) to use for the `open-editor` command. The @@ -53,6 +53,7 @@ c.bindings.key_mappings = {'<Ctrl+6>': '<Ctrl+^>', '<Ctrl+Enter>': '<Ctrl+Return # Bindings for normal mode config.unbind('r') +config.bind('(', 'zoom 100') config.bind(')', 'zoom 150') config.bind('d', 'scroll-page 0 1') config.bind('u', 'scroll-page 0 -1')