Created
March 31, 2024 15:02
-
-
Save KiaraGrouwstra/46477630c06454c26b7113be478c6abd to your computer and use it in GitHub Desktop.
qutebrowser config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If a config.py file exists, this file is ignored unless it's explicitly loaded | |
# via config.load_autoconfig(). For more information, see: | |
# https://github.com/qutebrowser/qutebrowser/blob/main/doc/help/configuring.asciidoc#loading-autoconfigyml | |
# DO NOT edit this file by hand, qutebrowser will overwrite it. | |
# Instead, create a config.py - see :help for details. | |
config_version: 2 | |
settings: | |
bindings.commands: | |
global: | |
insert: | |
<Ctrl+a>: mode-enter caret ;; move-to-start-of-document ;; selection-toggle | |
;; move-to-end-of-document | |
normal: | |
<Ctrl+Shift+PgDown>: tab-move + | |
<Ctrl+Shift+PgUp>: tab-move - | |
<Ctrl+a>: mode-enter caret ;; move-to-start-of-document ;; selection-toggle | |
;; move-to-end-of-document | |
passthrough: | |
<Ctrl+a>: mode-enter caret ;; move-to-start-of-document ;; selection-toggle | |
;; move-to-end-of-document | |
Escape: mode-leave | |
bindings.key_mappings: | |
global: null | |
colors.completion.category.bg: | |
global: 'qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #888888, stop:1 #505050)' | |
colors.webpage.darkmode.enabled: | |
global: true | |
colors.webpage.preferred_color_scheme: | |
global: dark | |
editor.command: | |
global: | |
- kate | |
- '{file}' | |
editor.encoding: | |
global: utf-8 | |
fonts.completion.category: | |
global: bold default_size default_family | |
fonts.completion.entry: | |
global: default_size default_family | |
fonts.contextmenu: | |
global: Sans | |
fonts.debug_console: | |
global: default_size default_family | |
fonts.default_family: | |
global: Sans | |
fonts.default_size: | |
global: 10pt | |
fonts.downloads: | |
global: default_size default_family | |
fonts.hints: | |
global: bold default_size default_family | |
fonts.keyhint: | |
global: default_size default_family | |
fonts.messages.error: | |
global: default_size default_family | |
fonts.messages.info: | |
global: default_size default_family | |
fonts.messages.warning: | |
global: default_size default_family | |
fonts.prompts: | |
global: default_size sans-serif | |
fonts.statusbar: | |
global: default_size default_family | |
fonts.tabs.selected: | |
global: default_size default_family | |
fonts.tabs.unselected: | |
global: default_size default_family | |
fonts.tooltip: | |
global: null | |
fonts.web.family.cursive: | |
global: null | |
fonts.web.family.fantasy: | |
global: null | |
fonts.web.family.fixed: | |
global: null | |
fonts.web.family.sans_serif: | |
global: null | |
fonts.web.family.serif: | |
global: null | |
fonts.web.family.standard: | |
global: null | |
fonts.web.size.default: | |
global: 16 | |
fonts.web.size.default_fixed: | |
global: 13 | |
fonts.web.size.minimum: | |
global: 0 | |
fonts.web.size.minimum_logical: | |
global: 6 | |
scrolling.smooth: | |
global: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment