From 49b8171eb492cdfe36853109967b46fd4fc5d63b Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 16 May 2019 14:25:19 +0200 Subject: [PATCH] set default qutebrowser editor to nvim --- .config/qutebrowser/config.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .config/qutebrowser/config.py diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py new file mode 100644 index 0000000..d1260ed --- /dev/null +++ b/.config/qutebrowser/config.py @@ -0,0 +1,21 @@ +# Autogenerated config.py +# Documentation: +# qute://help/configuring.html +# qute://help/settings.html + +# Uncomment this to still load settings configured via autoconfig.yml +# config.load_autoconfig() + +# Enable JavaScript. +# Type: Bool +config.set('content.javascript.enabled', True, 'file://*') + +# Enable JavaScript. +# Type: Bool +config.set('content.javascript.enabled', True, 'chrome://*/*') + +# Enable JavaScript. +# Type: Bool +config.set('content.javascript.enabled', True, 'qute://*/*') + +c.editor.command = ["alacritty", "-e", "nvim", "-f", "{file}"]