diff options
| -rw-r--r-- | qutebrowser/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qutebrowser/config.py b/qutebrowser/config.py index 0c33c53..bad4e0d 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -28,6 +28,7 @@ c.url.searchengines = { 'y': 'https://www.youtube.com/results?search_query={}', 'gh': 'https://github.com/search?q={}', 'h': 'https://hoogle.haskell.org/?hoogle={}', + 'cpp': 'http://cplusplus.com/search.do?q={}', } c.fonts.default_family = 'Fira Mono' @@ -53,6 +54,8 @@ config.bind('<Ctrl-K>', 'completion-item-focus prev', 'command') config.bind('J', 'tab-prev', 'normal') config.bind('K', 'tab-next', 'normal') +config.bind('<F12>', 'devtools', 'normal') + c.colors.webpage.darkmode.enabled = True # Convert light themed sites to dark theme (very nice result) c.colors.webpage.bg = 'black' # Disabling white flash before page loading |
