diff options
| -rw-r--r-- | config/qutebrowser/config.py | 7 | ||||
| -rw-r--r-- | overlays/qutebrowser.nix | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index 895341f..0a560b7 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -218,6 +218,8 @@ nmap(leader + 'wp', 'tab-pin') # Tab movement nmap('<Ctrl-k>', 'tab-prev') nmap('<Ctrl-j>', 'tab-next') +nmap('<Ctrl-Tab>', 'tab-next') +nmap('<Ctrl-Shift-Tab>', 'tab-prev') nmap(localleader + '<Tab>', 'tab-focus last') nmap('<Ctrl-Shift-k>', 'tab-move -') nmap('<Ctrl-Shift-j>', 'tab-move +') @@ -295,9 +297,10 @@ c.url.start_pages = [c.url.default_page] DEFAULT_SEARCH_ENGINE = 'd' c.url.searchengines = { # Main general + 'ss': 'https://www.startpage.com/do/search?q={}', 'd': 'https://lite.duckduckgo.com/lite?q={}', - 'go': 'https://lite.duckduckgo.com/lite?q={}', - 'gg': 'https://google.com/search?q={}', + 'gg': 'https://lite.duckduckgo.com/lite?q={}', + 'go': 'https://google.com/search?q={}', 'ai': 'https://chatgpt.com/?temporary-chat=true&q={}', 'aic': 'https://claude.ai/new?q={}', 'br': 'https://search.brave.com/search?q={}', diff --git a/overlays/qutebrowser.nix b/overlays/qutebrowser.nix index 71b3312..d8523ba 100644 --- a/overlays/qutebrowser.nix +++ b/overlays/qutebrowser.nix @@ -8,6 +8,9 @@ self: super: { doCheck = false; pythonImportsCheck = [ "tldextract" ]; }); + lxml-html-clean = super.lxml-html-clean.overridePythonAttrs (_: { + doCheck = false; + }); }; }; }; |
