You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
2.9 KiB
Python

# Autogenerated config.py
# Documentation:
# qute://help/configuring.html
# qute://help/settings.html
# Uncomment this to still load settings configured via autoconfig.yml
# config.load_autoconfig()
# This setting can be used to map keys to other keys. When the key used
# as dictionary-key is pressed, the binding for the key used as
# dictionary-value is invoked instead. This is useful for global
# remappings of keys, for example to map Ctrl-[ to Escape. Note that
# when a key is bound (via `bindings.default` or `bindings.commands`),
# the mapping is ignored.
# Type: Dict
c.bindings.key_mappings = {'<Ctrl-6>': '<Ctrl-^>', '<Ctrl-Enter>': '<Ctrl-Return>', '<Ctrl-J>': '<Return>', '<Ctrl-M>': '<Return>', '<Ctrl-[>': '<Escape>', '<Enter>': '<Return>', '<Shift-Enter>': '<Return>', '<Shift-Return>': '<Return>'}
# Background color of unselected even tabs.
# Type: QtColor
c.colors.tabs.even.bg = 'black'
# Background color of unselected odd tabs.
# Type: QtColor
c.colors.tabs.odd.bg = 'black'
# Background color of selected even tabs.
# Type: QtColor
c.colors.tabs.selected.even.bg = '#66aaff'
# Foreground color of selected even tabs.
# Type: QtColor
c.colors.tabs.selected.even.fg = 'black'
# Background color of selected odd tabs.
# Type: QtColor
c.colors.tabs.selected.odd.bg = '#66aaff'
# Foreground color of selected odd tabs.
# Type: QtColor
c.colors.tabs.selected.odd.fg = 'black'
# Background color for webpages if unset (or empty to use the theme's
# color)
# Type: QtColor
c.colors.webpage.bg = 'white'
# Font used in the completion categories.
# Type: Font
c.fonts.completion.category = 'bold 9pt monospace'
# Font used in the completion widget.
# Type: Font
c.fonts.completion.entry = '9pt monospace'
# Font used for the debugging console.
# Type: QtFont
c.fonts.debug_console = '9pt monospace'
# Font used for the downloadbar.
# Type: Font
c.fonts.downloads = '9pt monospace'
# Font used for the hints.
# Type: Font
c.fonts.hints = 'bold 9pt monospace'
# Font used in the keyhint widget.
# Type: Font
c.fonts.keyhint = '9pt monospace'
# Font used for error messages.
# Type: Font
c.fonts.messages.error = '9pt monospace'
# Font used for info messages.
# Type: Font
c.fonts.messages.info = '9pt monospace'
# Font used for warning messages.
# Type: Font
c.fonts.messages.warning = '9pt monospace'
# Default monospace fonts. Whenever "monospace" is used in a font
# setting, it's replaced with the fonts listed here.
# Type: Font
c.fonts.monospace = 'Iosevka Nerd Font'
# Font used for prompts.
# Type: Font
c.fonts.prompts = '8pt sans-serif'
# Font used in the statusbar.
# Type: Font
c.fonts.statusbar = '9pt monospace'
# Font used in the tab bar.
# Type: QtFont
c.fonts.tabs = '9pt monospace'
# Open new tabs (middleclick/ctrl+click) in the background.
# Type: Bool
c.tabs.background = True
# Padding around text for tabs
# Type: Padding
c.tabs.padding = {'bottom': 5, 'left': 5, 'right': 5, 'top': 5}