diff options
Diffstat (limited to '.config/qutebrowser')
| -rw-r--r-- | .config/qutebrowser/autoconfig.yml | 11 | ||||
| -rw-r--r-- | .config/qutebrowser/config.py | 5 |
2 files changed, 16 insertions, 0 deletions
diff --git a/.config/qutebrowser/autoconfig.yml b/.config/qutebrowser/autoconfig.yml new file mode 100644 index 0000000..88018e9 --- /dev/null +++ b/.config/qutebrowser/autoconfig.yml @@ -0,0 +1,11 @@ +# 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: + url.searchengines: + global: + DEFAULT: https://google.com/search?q={} diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py new file mode 100644 index 0000000..149d189 --- /dev/null +++ b/.config/qutebrowser/config.py @@ -0,0 +1,5 @@ +config.load_autoconfig() + +config.bind('q', 'quit') + +c.content.images = True |
