diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-10 03:04:54 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-10 03:04:54 -0400 |
| commit | ddf526713d0f82f001d8d59c5af8876d0c1753fe (patch) | |
| tree | ee30f65401d8d2d6eed3b9a6743b4dcb9ef4ed6e /modules/qutebrowser/config.py | |
| parent | 8d1e930ce093cf03beef8b03aa32b2c1cde8a432 (diff) | |
| download | home-ddf526713d0f82f001d8d59c5af8876d0c1753fe.tar.gz | |
update
Diffstat (limited to 'modules/qutebrowser/config.py')
| -rw-r--r-- | modules/qutebrowser/config.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/qutebrowser/config.py b/modules/qutebrowser/config.py new file mode 100644 index 0000000..1baaabe --- /dev/null +++ b/modules/qutebrowser/config.py @@ -0,0 +1,24 @@ +config.unbind('k') +config.bind(',v', 'hint links spawn mpv {hint-url}') +config.bind('m', 'scroll left') +config.bind('n', 'scroll down') +config.bind('e', 'scroll up') +config.bind('i', 'scroll right') +config.bind('M', 'back') +config.bind('N', 'tab-prev') +config.bind('E', 'tab-next') +config.bind('I', 'forward') + +config.bind('j', 'search-next') +config.bind('J', 'search-prev') +config.bind('l', 'mode-enter insert') + +c.tabs.show = 'never' +c.tabs.tabs_are_windows = True +c.tabs.last_close = 'close' +c.fonts.default_family = 'BerkeleyMonoPatched Nerd Font Propo' +c.fonts.default_size: '13pt' +c.hints.chars = 'arstneio' +c.tabs.favicons.show = 'never' +c.tabs.indicator.width = 0 +c.tabs.title.alignment = 'center' |