diff options
Diffstat (limited to '.config/qutebrowser/config.py')
-rw-r--r-- | .config/qutebrowser/config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index a87d434..4877e36 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -19,7 +19,7 @@ c.tabs.background = True c.tabs.position = "bottom" c.content.autoplay = False -c.editor.command = ['alacritty', '-e', 'nvim', '{}'] +c.editor.command = ['urxvt', '-e', 'vim', '{}'] c.url.default_page = "about:blank" # searches @@ -47,6 +47,7 @@ config.bind("xjf", "set content.javascript.enabled false") # block JS out of the box: c.content.javascript.enabled = False + js_whitelist = [ "*://localhost/*", "*://127.0.0.1/*", |