Skip to content

Instantly share code, notes, and snippets.

@yuvalif
Created March 14, 2023 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuvalif/b758d359c2e9b421b7c17e15e160df30 to your computer and use it in GitHub Desktop.
Save yuvalif/b758d359c2e9b421b7c17e15e160df30 to your computer and use it in GitHub Desktop.
my qutebrowser config
# no dark mode
config.set("colors.webpage.darkmode.enabled", False)
# Change the argument to True to still load settings configured via autoconfig.yml
config.load_autoconfig(False)
# Leave insert mode if a non-editable element is clicked.
# Type: Bool
c.input.insert_mode.auto_leave = False
# Bindings for normal mode
config.bind('<Alt+Left>', 'tab-prev')
config.bind('<Alt+Right>', 'tab-next')
config.bind('<Ctrl+d>', 'tab-close')
config.bind('<Left>', 'back')
config.bind('<Right>', 'forward')
config.bind('b', 'config-cycle content.blocking.enabled')
config.unbind('d')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment